如何在tensoflow中使用占位符来获取任意矩阵?

时间:2018-01-15 00:20:26

标签: matrix tensorflow

我是使用Tensorflow的新手。 我有两个矩阵我想作为输入: enter image description here

我的输出矩阵是这样的:

enter image description here 当我这样做时:

import tensorflow as tf
matrix1 = tf.placeholder();
matrix2 = tf.placeholder();
output_matrix = tf.placeholder();

那够了吗?如果矩阵是任意的,我不知道如何定义矩阵的形状和dtype?

1 个答案:

答案 0 :(得分:0)

没有指定占位符的形状是可以的;你将能够提供与下游操作有关的任何东西。 Dtype默认为float32。但是你需要指定一系列转换,这些转换从输入(占位符)到输出(不是占位符);见https://www.tensorflow.org/get_started/mnist/mechanics#build_the_graph

如果更容易,您也可以开始使用eager execution,然后切换到图表构建。