Should validation_data contain the full training_data into .train_model() just like how test_data is handled in GluonTS?
#2219
Unanswered
e-alizadeh
asked this question in
Q&A
Replies: 1 comment 4 replies
|
Yes, that’s how validation datasets are used by default, currently: validation instances are sliced out of each series, where loss is computed on the last |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
I see in GluonTS implementation that we have to pass the full dataset as test_data and the GluonTS will automatically split the test based on the
prediction_lengthinternally. Is the same thing applies when passingvalidation_datato.train()functions (e.g. inDeepAREstimator)?Currently I'm doing the following:
e.g. We have 100 samples and with the prediction_length of 5.
The following is not a working example, but I'm using the list slicing to convey my thought here!
Does above implementation makes sense?
All reactions