我是使用Tensorflow的新手。 我有两个矩阵我想作为输入:
我的输出矩阵是这样的:
import tensorflow as tf
matrix1 = tf.placeholder();
matrix2 = tf.placeholder();
output_matrix = tf.placeholder();
那够了吗?如果矩阵是任意的,我不知道如何定义矩阵的形状和dtype?
答案 0 :(得分:0)
没有指定占位符的形状是可以的;你将能够提供与下游操作有关的任何东西。 Dtype默认为float32
。但是你需要指定一系列转换,这些转换从输入(占位符)到输出(不是占位符);见https://www.tensorflow.org/get_started/mnist/mechanics#build_the_graph。
如果更容易,您也可以开始使用eager execution,然后切换到图表构建。