TensorFlow学习笔记4 placeholder传值 12345678910import tensorflow as tfinput1 = tf.placeholder(tf.float32)input2 = tf.placeholder(tf.float32)output = tf.multiply(input1,input2)# with tf.Session as sess:sess = tf.Session()print(sess.run(output,feed_dict={input1:[7.],input2:[2.]})) 运行的结果 1[14.] 计算机相关 > TensorFlow #计算机相关 #TensorFlow TensorFlow学习笔记4 http://yoursite.com/2019/09/03/计算机相关/TensorFlow/TensorFlow学习笔记(四)/ 作者 mohuani 发布于 2019年9月3日 许可协议 TensorFlow学习笔记6 上一篇 Phpstorm ubuntu创建图标 下一篇