I have a list "data_list", and I would save it in order to load it in another script. First of all I converted it in an array, in this way:
data_array = np.array(data_list)
Then I saved it:
np.savez("File", data_array)
Then, in another script I want to access to "File"; so:
a = np.load("File.npz")
b = a['arr_0']
I used this code until two weeks ago and it worked fine. In these days I am trying to work with my program, but it ends with an error identified in the line
b = a['arr_0']
"File" is a 300 MB file. The strangest thing is that it has stopped suddenly to work. Any idea about what can be happened?
Ps: I give you some information. My list contains 180 matrices 511x511. Each matrix contains decimal numbers (I tried to create 180 matrices of zeros, and the error occurs in the same way). If I reduce the number of matrices, the script works fine: in particular down to 130 matrices it is ok, while up to the program doesn't work. Here I report the error message
b = a['arr_0']File "C:\Python27\lib\site-packages\numpy\lib\npyio.py", line 241, in __getitem__return format.read_array(value)File "C:\Python27\lib\site-packages\numpy\lib\format.py", line 459, in read_arrayarray = numpy.fromstring(data, dtype=dtype, count=count)MemoryError