How to predict/evaluate a split #3158
Replies: 1 comment
-
I found what I wanted in the source README (https://github.com/awslabs/gluonts/blob/dev/README.md) In particular |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've just started using gluonts and I'm a bit confused about how to use splitters (i.e. https://ts.gluon.ai/stable/tutorials/data_manipulation/dataset_splitting_example.html)
Specifically, it looks like the concept of splitters was added at some stage, most of the documentation simply creates a test and train dataset, then uses
make_evaluation_predictions
- I cannot find any documentation and how to use splits generated fromgenerate_instance
(i.e. generate_instance returnsgluonts.dataset.split.TestData
) to do the equivalent.My data has 15m frequency, I generated by splits and train the model as follows:
But now how do I evaluate the predictions on test_pairs? Each test pair consists of two windows (the "past" and "future") so I need to combine them, ensure the model predicts the "future" only using the "past" etc. I'm assuming there's some helper somewhere - all my attempts result in errors, i.e.
Beta Was this translation helpful? Give feedback.
All reactions