无法打印Tensor的值

时间:2017-11-27 08:31:46

标签: python tensorflow

我是Tensorflow的新手。我在这里看过教程和其他一些问题。但是,有一些问题,我不明白为什么(我仍然不确定tf如何工作)。

我有这个代码(我尝试过其他几个选项,但结果总是一样):

filename_queue = tf.train.string_input_producer(["exoTrain.csv"])
features, label = read_from_file(filename_queue) 
testSess = tf.Session()
init = tf.global_variables_initializer()
testSess.run(init)
print(testSess.run(features))
testSess.close()

其中featurestf.stackTensor("stack:0", shape=(3197,), dtype=float32)

此代码不会打印任何内容。实际上,它只是卡住了,我必须手动停止它。

为什么它没有正确终止以及为什么不打印?

0 个答案:

没有答案