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
{{ message }}
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
data_ex_git.zip
I've trying to forecast time-series using mx.rnn model but I can't shape the data to input format asked from mx.rnn. I want do predict a variable Q_t using some past values from itself and another variables. Using mx.model.FeedForward.create is very easy to define. I can't understand the "labels" input on mx.rnn model. This is my code:
The answer to #7524 might answer some of your questions. In short, as I understand it the design of current RNN functionalities assume text data on which embedding is performed. There's a pull request open to help building more general RNN structures #7476.
You can look here for how to approach it. It requires training on GPU though.
As per your data design, you seem to have included different measuring lags of the features (like time minus 1, minus 2), which I'm not sure is appropriate given the RNN is meant to retain the relevant past info.
Hi @ArturIndio MXNet R package RNN API has undergone significant change in the last year and the API mx.rnn no more exist. However, there are various new functionalities added and you can check out nice examples of time series, language modeling and few other use cases here. https://jeremiedb.github.io/mxnet_R_bucketing/LanguageModel_GPU.html
Please try out the latest API for your use case and let us know if you still need assistance regarding anything.
data_ex_git.zip
I've trying to forecast time-series using mx.rnn model but I can't shape the data to input format asked from mx.rnn. I want do predict a variable Q_t using some past values from itself and another variables. Using mx.model.FeedForward.create is very easy to define. I can't understand the "labels" input on mx.rnn model. This is my code:
That's my error:
[19:10:06] d:\program files (x86)\jenkins\workspace\mxnet\mxnet\src\operator\tensor\./matrix_op-inl.h:141: Using target_shape will be deprecated. [19:10:06] d:\program files (x86)\jenkins\workspace\mxnet\mxnet\src\operator\tensor\./matrix_op-inl.h:141: Using target_shape will be deprecated. [19:10:06] d:\program files (x86)\jenkins\workspace\mxnet\mxnet\src\operator\tensor\./matrix_op-inl.h:141: Using target_shape will be deprecated. [19:10:06] D:\Program Files (x86)\Jenkins\workspace\mxnet\mxnet\dmlc-core\include\dmlc/logging.h:308: [19:10:06] D:\Program Files (x86)\Jenkins\workspace\mxnet\mxnet\src\ndarray\ndarray.cc:329: Check failed: from.shape() == to->shape() operands shape mismatchfrom.shape = (5,14) to.shape=(5,5) Error in exec$update.arg.arrays(arg.arrays, match.name, skip.null) : [19:10:06] D:\Program Files (x86)\Jenkins\workspace\mxnet\mxnet\src\ndarray\ndarray.cc:329: Check failed: from.shape() == to->shape() operands shape mismatchfrom.shape = (5,14) to.shape=(5,5)
The text was updated successfully, but these errors were encountered: