Skip to content

Commit

Permalink
Fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
nicl-nno committed Dec 29, 2023
1 parent d764566 commit e5430d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simple/time_series_forecasting/api_forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run_ts_forecasting_example(dataset='australia', horizon: int = 30, timeout:
task_params=TsForecastingParams(forecast_length=horizon))

# run AutoML model design in the same way
pipeline = model.fit(train_data, predefined_model='auto')
pipeline = model.fit(train_data)

# use model to obtain two-step in-sample forecast
in_sample_forecast = model.predict(test_data, validation_blocks=validation_blocks)
Expand Down

0 comments on commit e5430d0

Please sign in to comment.