Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经成功地将一个 NPZ 文件转换为文本,在做了一些修改之后,现在我想使用 Python 将它转换回 NPZ 文件。
我假设您使用numpy.savetxt(), 以便将 numpy 数组转换为文本文件。
numpy.savetxt()
您可以使用将文件转换为 NPZ 格式numpy.savez()
numpy.savez()
另一种方法,如果要将 .txt 文件加载为 Array 是使用numpy.loadtxt(),建议也使用reshape正确定义数组的行和列。
numpy.loadtxt()
reshape