FIX: Insample predictions with multivariate model#1271
Closed
FIX: Insample predictions with multivariate model#1271
Conversation
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
elephaint
requested changes
Feb 24, 2025
| "\n", | ||
| " if step == 'predict':\n", | ||
| " initial_input = temporal.shape[-1] - self.test_size\n", | ||
| " if initial_input <= self.input_size: # There is not enough data to predict first timestamp\n", |
Contributor
There was a problem hiding this comment.
Nice! I think only a unit test to verify that this works as intended?
Contributor
Author
|
Insample predictions with multivariate models now works with the merge of #1023 . Closing as this PR is not necessary anymore. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently, insample predictions do not work for multivariate model; they miss
input_sizevalues. This is likely due to padding not being applied for early timesteps when creating windows for multivariate models.This fix allows padding, just like in
BaseWindows. This fixes the problem of insample predictions with multivariate models.I tested the performance of some multivariate models, and padding does not impact performance.
I also added a multivariate model to the insample predictions tests.