-
Notifications
You must be signed in to change notification settings - Fork 80
Conversation
… work with context (#917)
…onalMovingAverageModel`, `DeadlineMovingAverageModel` (#948)
# Conflicts: # .github/workflows/test.yml # CHANGELOG.md # etna/models/base.py # etna/pipeline/pipeline.py # tests/test_ensembles/test_stacking_ensemble.py # tests/test_models/nn/test_rnn.py # tests/test_models/test_inference.py
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
🚀 Deployed on https://deploy-preview-979--etna-docs.netlify.app |
Codecov Report
@@ Coverage Diff @@
## master #979 +/- ##
==========================================
+ Coverage 85.24% 85.73% +0.49%
==========================================
Files 157 160 +3
Lines 8264 8548 +284
==========================================
+ Hits 7045 7329 +284
Misses 1219 1219
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
# Conflicts: # CHANGELOG.md # etna/models/tbats.py # pyproject.toml
View / edit / reply to this conversation on ReviewNB alex-hse-repository commented on 2022-10-25T10:44:41Z Let's try to suppress warnings in this notebook, I see at least two huge warnings here and in the begining of "Custom model" section |
examples/get_started.ipynb
Outdated
@@ -390,7 +390,7 @@ | |||
"name": "stderr", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the summary of proposed changes
This reverts commit 83b8730.
Before submitting (must do checklist)
Proposed Changes
In this track we added
predict
method to pipelines. In order to do this we taught some models to makepredict
with a context and added context intoforecast
. Hierarchy of base model classes was updated, so we changed examples in some notebooks.Added
predict
method to pipelines (#954)SARIMAXModel
,AutoARIMAModel
,SeasonalMovingAverageModel
,DeadlineMovingAverageModel
(#948)SeasonalMovingAverageModel
andDeadlineMovingAverageModel
to work with context (#917)predict
method to models (#935)predict
in ensembles (#972)predict
inPipeline
,AutoRegressivePipeline
(#970)Changed
RNNModel
intotest_inference
(#966)ts
required parameter forpredict
(#981)Fixed
get_started
,custom_transform_and_model
to work with new classes (#974)Closing issues