TensorFlow 之tf.placeholder()
Posted hsy1941
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow 之tf.placeholder()相关的知识,希望对你有一定的参考价值。
tf.placeholder(
dtype,
shape=None,
name=None
)
# In[]
#dtype:被填充的张量(Tensor)的元素类型。
#shape:被填充张量(Tensor)的形状(可选参数)。如果没有指定张量(Tensor)打形状,你可
#以填充该张量(Tensor)为任意形状。
#name:为该操作提供一个名字(可选参数)。
import tensorflow as tf # 定义placeholder input1 = tf.placeholder(tf.float32,shape=(1, 2),name="input-1") input2 = tf.placeholder(tf.float32,shape=(2, 1),name="input-2") # 定义矩阵乘法运算(注意区分matmul和multiply的区别:matmul是矩阵乘法,multiply是点乘) output = tf.matmul(input1, input2) # 通过session执行乘法运行 with tf.Session() as sess: # 执行时要传入placeholder的值 print(sess.run(output, feed_dict = {input1:[1,2], input2:[3,4]})) # 最终执行结果 [11]
以上是关于TensorFlow 之tf.placeholder()的主要内容,如果未能解决你的问题,请参考以下文章
TensorFlow篇--Tensorflow框架可视化之Tensorboard