We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5409551 commit bf440f6Copy full SHA for bf440f6
lightwood/mixer/sktime.py
@@ -69,6 +69,9 @@ def __init__(
69
:param use_stl: Whether to use de-trenders and de-seasonalizers fitted in the timeseries analysis phase.
70
""" # noqa
71
super().__init__(stop_after)
72
+
73
+ assert ts_analysis['tss'].horizon > 1, log.error("Horizon must be greater than 1 when using the SkTime Mixer!")
74
75
self.stable = False
76
self.prepared = False
77
self.supports_proba = False
0 commit comments