Closed sylvaincom closed 5 years ago
In NumPy version 1.16.3, the default value of the argument allow_pickle in the numpy.load function is False (while it was True in the previous NumPy versions). Thus, I added the argument allow_pickle=True each time we call the numpy.load function.
1.16.3
allow_pickle
numpy.load
False
True
allow_pickle=True
In NumPy version
1.16.3
, the default value of the argumentallow_pickle
in thenumpy.load
function isFalse
(while it wasTrue
in the previous NumPy versions). Thus, I added the argumentallow_pickle=True
each time we call thenumpy.load
function.