placeholder在执行时再传入值
 
数据
1 input1 = tf.placeholder(tf.float32)        #input1 = tf.placeholder(tf.float32,[2,2])可定义格式
2 input2 = tf.placeholder(tf.float32)

 

方法

1 output = tf.mul(input1 ,input2)

 

执行

1 with tf.Session as sess:
2     print(sess.run(output,feed_dict={input1:[7.], input2:[2.]}))
3     #feed_dict是字典形式 key:value

 

posted on 2022-08-10 11:00  Jolyne123  阅读(34)  评论(0编辑  收藏  举报