We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Backtest should work with pipeline not bare model. It makes backtest easier as a class.
Backtest implements logic that are now a part of Pipeline class.
--
No response
The text was updated successfully, but these errors were encountered:
Proposal: We shoud just add backtest method to BasePipeline. ToBe:
backtest
BasePipeline
class BasePipeline: def __init__(self, horizon, *args, **kwargs): pass def fit(self, ts): pass def forecast(self): pass def backtest(self, ts: TSDataset, metrics: List[Metric], n_folds: int = 5, mode: str = "expand", n_jobs: int = 1): pass
In the next series we should remove TimeSeriesCrossvalidation
TimeSeriesCrossvalidation
Sorry, something went wrong.
Pipeline
julia-shenshina
Successfully merging a pull request may close this issue.
🚀 Feature Request
Backtest should work with pipeline not bare model. It makes backtest easier as a class.
Motivation
Backtest implements logic that are now a part of Pipeline class.
Proposal
--
Test cases
No response
Alternatives
No response
Additional context
No response
Checklist
The text was updated successfully, but these errors were encountered: