TensorFlow莫烦 placehoder (三)

placeholder 传入值要用字典

并且tf.mul、tf.sub 和 tf.neg 被弃用,现在使用的是 tf.multiply、tf.subtract 和 tf.negative.

import tensorflow as tf

input1=tf.placeholder(tf.float32)

input2=tf.placeholder(tf.float32)

output = tf.multiply(input1, input2)

init = tf.initialize_all_variables()
sess = tf.Session()
sess.run(init)    
print(sess.run(output,feed_dict={input1:[7.0],input2:[2.0]}))
posted @ 2022-08-19 22:59  luoganttcc  阅读(9)  评论(0编辑  收藏  举报