TensorFlow学习笔记(6)tf.square,求平方和

用例对应的源代码,觉得有帮助可以Star

import tensorflow as tf

#  tf.square(
#      x,
#      name=None
#      )
#
#  Computes square of x element-wise.

with tf.Session() as sess:
    print(sess.run(tf.square(3))) # 9
    原文作者:谢昆明
    原文地址: https://www.jianshu.com/p/f66bbb82a4e0
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞