We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
HierarchicalPipeline
Create pipeline to process hierarchical time series
Create class:
class HierarchicalPipeline(Pipeline): def __init__( self, reconciler: BaseReconciler, model: ModelType, transforms: Sequence[Transform] = (), horizon: int = 1 ):
fit
reconciler
reconciler.fit
source_level
reconciler.aggregate
raw_forecast()
forecast()
raw_forecast
reconciler.reconcile
forecast
target_level
All the tests should cover both top-down and bottom-up reconcilers with correct source and target levels
blocked by #1037 #1038 #1044
The text was updated successfully, but these errors were encountered:
brsnw250
No branches or pull requests
🚀 Feature Request
Create pipeline to process hierarchical time series
Proposal
Create class:
fit
:reconciler
usingreconciler.fit
methodsource_level
usingreconciler.aggregate
raw_forecast()
forecast()
raw_forecast
reconciler.reconcile
Test cases
fit
pipeline saves correct ts on thesource_level
ofreconciler
raw_forecast
generates forecast on thesource_level
ofreconciler
forecast
generates forecast on thetarget_level
ofreconciler
All the tests should cover both top-down and bottom-up reconcilers with correct source and target levels
Additional context
blocked by #1037 #1038 #1044
The text was updated successfully, but these errors were encountered: