TensorFlow学习笔记4

placeholder传值

1
2
3
4
5
6
7
8
9
10
import tensorflow as tf

input1 = 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学习笔记4
http://yoursite.com/2019/09/03/计算机相关/TensorFlow/TensorFlow学习笔记(四)/
作者
mohuani
发布于
2019年9月3日
许可协议