Tensorflow

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

2018-11-09  本文已影响1人  谢昆明

用例对应的源代码,觉得有帮助可以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
上一篇下一篇

猜你喜欢

热点阅读