标签:session pre cti 有关 其他 http eva dev 图片
1、运行以下代码
import tensorflow as tf
a = tf.constant([1.0, 2.0], name="a")
b = tf.constant([2.0, 3.0], name="b")
result = a + b
print result
sess = tf.InteractiveSession ()
print(result.eval())
sess.close()
得到
其中,add与代码中的add有关,0表示第一个输出,图中的shape(2, )则表示一个长度为2的一维数组
4、至于
g=tf.Graph()
with g.device('/gpu:0'):
result = a+b
这种概念就不讲了
标签:session pre cti 有关 其他 http eva dev 图片
原文地址:https://www.cnblogs.com/liuboblog/p/11615641.html