标签:VID flow 除法 res 输出 run code import session
import tensorflow as tf
a=tf.constant(5)
b=tf.constant(3)
res1=tf.divide(a,b)
res2=tf.div(a,b)
with tf.Session() as sess:
print sess.run(res1)
print sess.run(res2)
输出:
1.66666666667
1
标签:VID flow 除法 res 输出 run code import session
原文地址:http://blog.51cto.com/13959448/2339019