gpt4 book ai didi

python - 加载大 .npy 文件导致 python 停止工作

转载 作者:太空宇宙 更新时间:2023-11-04 00:13:08 25 4
gpt4 key购买 nike

我正在尝试加载一个非常大 (6GB) 的 .npy 文件,但出现了 Python has stopped working 错误。关于如何解决这个问题的任何建议? enter image description here

最佳答案

您可以对更大的文件使用缓冲,例如:

with open("bigfile.npy","r",buffering=1000) as f:
contents=f.read()
#do something with the fist n lines of file at a time

这不会完全打开整个文件,而只会打开您在缓冲 arg 中指定为整数的数量(您可以根据您正在使用的系统来决定您想要什么)并且系统不会停止工作。

关于python - 加载大 .npy 文件导致 python 停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51792126/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com