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

测试TensorFlow是否安装成功

时间:2020-09-17 13:21:36      阅读:34      评论:0      收藏:0      [点我收藏+]

标签:简单   import   on()   img   term   fill   安装   constant   入门   

1、测试TensorFlow是否安装成功

python

import tensorflow as tf

hello=tf.constant(‘hello,world‘)

sess=tf.Session()

print(sess.run(hello))

结果会输出,如下图所示

技术图片

2、TensorFlow的入门代码:简单的加法运算

import tensorflow as tf

x=tf.constant(1)

y=tf.constant(2)

z=x+y

sess=tf.Session()

print(sess.run(z))

结果会输出,如下图所示

技术图片

测试TensorFlow是否安装成功

标签:简单   import   on()   img   term   fill   安装   constant   入门   

原文地址:https://www.cnblogs.com/zhtook/p/13614707.html

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