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
I'm trying to train RNN LM and I've encountered a problem that the data preparation script supports maximum dataset with less than 2147483647 words. The limitation is due to the fact that it uses Array1 when creating RaggedTensor for sentences, which has a maximum length of int32_t. Is it possible to get around this limitation somehow?
[F] /var/www/k2/csrc/array.h:501:void k2::Array1::Init(k2::ContextPtr, int32_t, k2::Dtype) [with T = int; k2::ContextPtr = std::shared_ptrk2::Context; int32_t = int] Check failed: size >= 0 (-2047483664 vs. 0) Array size MUST be greater than or equal to 0, given :-2047483664
The text was updated successfully, but these errors were encountered:
I'm trying to train RNN LM and I've encountered a problem that the data preparation script supports maximum dataset with less than 2147483647 words. The limitation is due to the fact that it uses Array1 when creating RaggedTensor for sentences, which has a maximum length of int32_t. Is it possible to get around this limitation somehow?
I attach an error message
The text was updated successfully, but these errors were encountered: