标签: python machine-learning tensorflow
我有1D Tensor。
所以当我打电话时
print(session.run(labels))
我得到[0,1,0 ......,0 1 0]
这是一个大约1500个值的列表,如何在不编写循环的情况下打印整个列表?
答案 0 :(得分:1)
打印session.run()将输出为numpy数组。
您可以按如下方式设置打印选项:
import numpy numpy.set_printoptions(threshold=numpy.nan)
I found the related answer from this stackoverflow question