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
@@ -78,6 +80,17 @@ class ARIMAPlus(base.SupervisedTrainableWithIdColPredictor):
78
80
adjust_step_changes (bool, default True):
79
81
Determines whether or not to perform automatic step change detection and adjustment in the model training pipeline.
80
82
83
+
forecast_limit_upper_bound (float or None, default None):
84
+
The upper bound of the forecasting values. When you specify the ``forecast_limit_upper_bound`` option, all of the forecast values must be less than the specified value.
85
+
For example, if you set ``forecast_limit_upper_bound`` to 100, then all of the forecast values are less than 100.
86
+
Also, all values greater than or equal to the ``forecast_limit_upper_bound`` value are excluded from modelling.
87
+
The forecasting limit ensures that forecasts stay within limits.
88
+
89
+
forecast_limit_lower_bound (float or None, default None):
90
+
The lower bound of the forecasting values where the minimum value allowed is 0. When you specify the ``forecast_limit_lower_bound`` option, all of the forecast values must be greater than the specified value.
91
+
For example, if you set ``forecast_limit_lower_bound`` to 0, then all of the forecast values are larger than 0. Also, all values less than or equal to the ``forecast_limit_lower_bound`` value are excluded from modelling.
92
+
The forecasting limit ensures that forecasts stay within limits.
93
+
81
94
time_series_length_fraction (float or None, default None):
82
95
The fraction of the interpolated length of the time series that's used to model the time series trend component. All of the time points of the time series are used to model the non-trend component.
0 commit comments