有时候,为了方便调试、定位问题,需要把 pytorch 中的 tensor 张量保存到 txt 中,方法如下,
比如需要保存的 pytorch 的 tensor 为 outputs
,其维度为 [1, 1, 250, 11]
,则:
with open("outputs.txt", "w") as file:for i in range(250):for j in range(11):file.write(str(outputs[0][0][i][j].item()))file.write('\n')
这样就把张量 outputs
的值保存到了 outputs.txt
中了。