1. Learn
  2. /
  3. Courses
  4. /
  5. Designing Forecasting Pipelines for Production

Connected

Exercise

Forecasting with ML Models

As a data science consultant, your task is to predict US hourly electricity demand. In the previous task, you cleaned and prepared the data. Now, it's time to use machine learning models to build your forecast.

We previously covered the statsforecast workflow, and now you'll apply the same principles using mlforecast.

The train and test datasets, as well as models (LGBMRegressor(), XGBRegressor(), LinearRegression()), are preloaded.

The MLForecast class has been imported from the mlforecast package, ready to use. Let's build your forecast!

Instructions 1/2

undefined XP
    1
    2
  • Define the ML models using LGBMRegressor(), XGBRegressor(), and LinearRegression().
  • Set up the MLForecast object and set the frequency to hourly ('h').