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
Add optional parameter ts into AbstractPipeline.forecast with default value None. It will allow users to use new TSDatasets after loading the pipeline.
Proposal
Add optional parameter ts into AbstractPipeline.forecast with default value None. It will allow users to use new TSDatasets after loading the pipeline.
Update children.
Change the signature in all the children.
Add logic for checking if ts is given:
* If ts is given then use ts, ignore its transforms during making the forecasting.
* If ts isn't given then use self.ts, if it isn' present raise the error.
In notebook with inference demo add example with making forecast on a new ts without passing it during load.
Test cases
Make sure current tests pass.
For every pipeline check.
That it is possible to make forecast on other ts. For example, keep only fraction of segments for check.
That it is possible to load pipeline from disk without ts and make forecast by passing a new ts.
Additional context
No response
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
Add optional parameter
ts
intoAbstractPipeline.forecast
with default valueNone
. It will allow users to use newTSDatasets
after loading the pipeline.Proposal
ts
intoAbstractPipeline.forecast
with default valueNone
. It will allow users to use newTSDatasets
after loading the pipeline.ts
is given:* If
ts
is given then usets
, ignore itstransforms
during making the forecasting.* If
ts
isn't given then useself.ts
, if it isn' present raise the error.ts
without passing it duringload
.Test cases
forecast
on otherts
. For example, keep only fraction of segments for check.ts
and makeforecast
by passing a newts
.Additional context
No response
The text was updated successfully, but these errors were encountered: