码迷,mamicode.com
首页 > 其他好文 > 详细

TensorFlow placeholder

时间:2018-09-22 18:25:34      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:class   pre   一个   code   input   imp   字典   允许   inpu   

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

标签:class   pre   一个   code   input   imp   字典   允许   inpu   

原文地址:https://www.cnblogs.com/francischeng/p/9690385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!