如何在Tensorflow中的1D Tensor中详尽地打印值而不会得到截断的输出?

时间:2017-10-09 05:55:23

标签: python machine-learning tensorflow

我有1D Tensor。

所以当我打电话时

print(session.run(labels))

我得到[0,1,0 ......,0 1 0]

这是一个大约1500个值的列表,如何在不编写循环的情况下打印整个列表?

1 个答案:

答案 0 :(得分:1)

打印session.run()将输出为numpy数组。

您可以按如下方式设置打印选项:

import numpy
numpy.set_printoptions(threshold=numpy.nan)

I found the related answer from this stackoverflow question