You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
terminate called after throwing an instance of 'std::length_error'
what(): cannot create std::vector larger than max_size()
./cpp_model.sh: line 20: 15311 Aborted (core dumped)
with X.npy.zip. The array is pretty small, with shape (137, 24, 144). This is well under the int limit in #71. Loading it in Python via import numpy as np; np.load("./X.npy") works as expected. The array is all doubles.
The text was updated successfully, but these errors were encountered:
Running this line:
cnpy::NpyArray arr = cnpy::npy_load("X.npy");
produces this error:
with X.npy.zip. The array is pretty small, with shape
(137, 24, 144)
. This is well under the int limit in #71. Loading it in Python viaimport numpy as np; np.load("./X.npy")
works as expected. The array is all doubles.The text was updated successfully, but these errors were encountered: