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.
Running this line:
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.