首页 > 代码库 > TensorFlow——小练习:feed
TensorFlow——小练习:feed
feed就是喂入数据
使用feed前必须要有占位符作为操作的对象,在运行操作的时候喂入数据。
1 # _*_coding:utf-8_*_ 2 import tensorflow as tf 3 import numpy as np 4 5 input1 = tf.placeholder(tf.float32) # 占位符要指明元素数据类型,在运行操作时,若算子有占位符,需要在运行时,通过feed_dict来指feed的数据 6 input2 = tf.placeholder(tf.float32) 7 8 output = tf.mul(input1, input2) 9 10 with tf.Session() as sess: 11 print(sess.run(output, feed_dict={input1:[7.0], input2:[2.]}))
运行结果:
[ 14.]
TensorFlow——小练习:feed
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。