Skip to content

Commit

Permalink
Add a prototyping document for temporal hierarchical forecasting #127
Browse files Browse the repository at this point in the history
Corrcetd grouping hierarchies
  • Loading branch information
Antoine Carme committed May 1, 2020
1 parent ffb3d80 commit 5fcacd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaf/HierarchicalForecastEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def create_signal_hierarchy(self , iInputDS, iTime, iSignal, iHorizon, iHierarch
if(iHierarchy['Type'] == "Grouped"):
from .TS import Signal_Grouping as siggroup
lSignalHierarchy = siggroup.cSignalGrouping();
if(iHierarchy['Type'] == "Temporal"):
elif(iHierarchy['Type'] == "Temporal"):
from .TS import Temporal_Hierarchy as temphier
lSignalHierarchy = temphier.cTemporalHierarchy();
else:
Expand Down

0 comments on commit 5fcacd4

Please sign in to comment.