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

Connected

Exercise

Registering the model

The final step is to register and log the fitted model using MLflow. This allows you to track and version your models for production deployment.

The datetime, mlflow, mlforecast.flavor packages, and the fitted mlf model are preloaded for you.

Instructions

100 XP
  • Set the run_name using the current timestamp created for you in the run_time variable.
  • Use mlflow.start_run() to start a run with the specified experiment ID.
  • Log the model using the right method.