码迷,mamicode.com
首页 > 其他好文 > 详细

TensorFlow入门——hello

时间:2018-06-02 17:09:29      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:运行   输入   一个   一半   on()   ant   简单   测试   span   

上一节说了TensorFlow的安装,这一节说一下测试的问题

新建一个Python文件,输入

1 import tensorflow as tf
2 hello = tf .constant (’Hello, TensorFlow!’)
3 sess = tf. Session()
4 print(sess.run(hello))
5 a= tf.constant(lO)
6 b = tf.constant(30)
7 print (sess. run (a + b) )

运行,代码很简单。不报错就是成功的一半,正确结果相信所有人都能知道。

TensorFlow入门——hello

标签:运行   输入   一个   一半   on()   ant   简单   测试   span   

原文地址:https://www.cnblogs.com/jourluohua/p/9125878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!