美文网首页Tensorflow
TensorFlow学习笔记(6)tf.square,求平方和

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

作者: 谢昆明 | 来源:发表于2018-11-09 09:22 被阅读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
    

    相关文章

      网友评论

        本文标题:TensorFlow学习笔记(6)tf.square,求平方和

        本文链接:https://www.haomeiwen.com/subject/fhjnxqtx.html