Closed DanielPollithy closed 4 years ago
The default value in np.load(...) for the keyword argument allow_pickle changed to False beginning with numpy version 1.16.3, therefore we have to set it to True explicitly.
np.load(...)
allow_pickle
Alternatively, the numpy version could be restricted to be "<=1.16.3"
See: https://numpy.org/devdocs/reference/generated/numpy.load.html
The default value in
np.load(...)
for the keyword argumentallow_pickle
changed to False beginning with numpy version 1.16.3, therefore we have to set it to True explicitly.Alternatively, the numpy version could be restricted to be "<=1.16.3"
See: https://numpy.org/devdocs/reference/generated/numpy.load.html