3Tensorflow中的fetch和feed
程序员文章站
2023-12-30 15:42:52
...
import tensorflow as tf
#Fetch概念 在session中同时运行多个op
input1=tf.constant(3.0) #constant()是常量不用进行init初始化
input2=tf.constant(2.0)
input3=tf.constant(5.0)
add=tf.add(input2, input3)
mul=tf.multiply(input1,add)
with tf.Session() as sess:
result=sess.run([mul,add]) #这里的[]就是Fetch操作
print(result)
#Feed
#创建占位符
input1=tf.placeholder(tf.float32)
input2=tf.placeholder(tf.float32)
#定义乘法op,op被调用时可通过Feed的方式将input1、input2传入
output=tf.multiply(input1,input2)
with tf.Session() as sess:
#feed的数据以字典的形式传入
print(sess.run(output,feed_dict={input1:[7.],input2:[2.]}))
[21.0, 7.0]
[14.]
该系列基础实例参考视频
推荐阅读
-
3Tensorflow中的fetch和feed
-
TensorFlow中fetch和feed_dict怎么用
-
pmdarima中的pipeline和autoarima
-
tensorflow中的Fetch和Feed
-
php学习之道:php中is_file和file_exist的区别,and判断目录is_dir
-
转帖:一分钟教会你用google图表中的曲线图和柱状图
-
Ecshop安装过程中的的相关问题:cls_image::gd_version()和不支持JPEG
-
分享下个人关于js中的同步和异步的理解
-
请大家帮我看一下我这段代码中的ul和a为什么不能显示在同一行中。_html/css_WEB-ITnose
-
PHP中exec函数和shell_exec函数的区别,execshell_exec_PHP教程