TensorFlow placeholder

Posted francischeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow placeholder相关的知识,希望对你有一定的参考价值。

placeholder 允许在用session.run()运行结果的时候给输入一个值

import tensorflow as tf

input1 = tf.placeholder(tf.float32)
input2 = tf.placeholder(tf.float32)

output = tf.multiply(input1, input2)

with tf.Session() as sess:
    print(sess.run(output, feed_dict={input1: [4.], input2: [5.]}))        #传入的feed_dict是一个字典值

运行结果:

技术分享图片

 

以上是关于TensorFlow placeholder的主要内容,如果未能解决你的问题,请参考以下文章

TensorFlow placeholder

Tensorflow Placeholder

Tensorflow数据读取方式总结

Tensorflow数据读取方式总结

莫烦TENSORFLOW-placeholder

python TensorFlow PlaceHolders