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
It will make it possible to save ts with pipeline. For now, we don't want to implement saving TSDataset (it will be much simplier after completion of TSDataset-v2.0).
We expect that user gives us dataset we want to work with. If user hasn't give us the dataset, may be he wants to refit pipeline or he want to give a custom TSDataset into forecast/predict.
How save should work.
Remove attributes pipelines, ts.
Save object with SaveMixin.
Save each pipeline in pipelines separately into folder inside the archive.
How load should work.
Load object with SaveMixin.
Load pipelines. We should get classname from meta or implement load method that makes this logic with loading classname for us.
Test cases
Test mixin.
Test in saving that everything except for pipeline is saved in object.pkl.
Test in saving that pipelines are saved into separate folder and can be loaded from it.
Test error on non-existent file.
Test that load restores pipelines and ts (if given).
Test warning on different versions on etna.
Test saving/loading on VotingEnsemble.
Test saving/loading on StackingEnsemble.
Test saving/loading on DirectEnsemble.
Additional context
No response
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
We want to make ensembles saveable.
Proposal
SaveEnsembleMixin(SaveMixin)
, it will be responsible for saving all ensembles.ts
with pipeline. For now, we don't want to implement savingTSDataset
(it will be much simplier after completion of TSDataset-v2.0).TSDataset
intoforecast
/predict
.pipelines
,ts
.SaveMixin
.pipelines
separately into folder inside the archive.SaveMixin
.pipelines
. We should get classname from meta or implementload
method that makes this logic with loading classname for us.Test cases
object.pkl
.VotingEnsemble
.StackingEnsemble
.DirectEnsemble
.Additional context
No response
The text was updated successfully, but these errors were encountered: