
Explanation:
The horizon parameter in time series forecasting specifies how far into the future the model should generate predictions. It is expressed in the same units as the time series frequency (e.g., hours, days, weeks, months).
time_col parameter, indicating the column containing timestamps in the data.frequency.timeout or max_experiment_duration.Example:
horizon = 7, the model forecasts sales for the next 7 days.horizon = 24, the model forecasts traffic for the next 24 hours.Key Points:
Ultimate access to all questions.
No comments yet.
What does the horizon parameter represent in the context of forecasting with AutoML?
A
The time column for forecasting.
B
The frequency of the time series.
C
The number of periods into the future for which forecasts should be returned.
D
The maximum time to wait for AutoML trials.