摘要:
import tensorflow as tf input1 = tf.constant(1) print(input1) input2 = tf.Variable(2,tf.int32) print(input2) input2 = input1 sess = tf.Session() print(sess.run(input2)) import tensorflow as tf... 阅读全文
posted @ 2019-02-08 18:12
吴裕雄
阅读(278)
评论(0)
推荐(0)
2019年2月8日