python 报错:
numpy.core._exceptions.MemoryError: Unable to allocate 764. MiB for an array with shape (100150807,) and data type int64
产生原因:程序需要处理一个很大的csv文件,存在内存溢出现象
只需要将这个文件分割成几个小文件,然后处理就可以了。
相关链接
python 报错:
numpy.core._exceptions.MemoryError: Unable to allocate 764. MiB for an array with shape (100150807,) and data type int64
产生原因:程序需要处理一个很大的csv文件,存在内存溢出现象
只需要将这个文件分割成几个小文件,然后处理就可以了。
相关链接