MulaiMulai sekarang secara gratis

Create a Model

The MLflow Model Registry provides a centralized storage location for MLflow Models. The Registry enables collaboration and provides a way to manage a model's lifecycle.

In this exercise, you will use the mlflow client module to create a new Model named "Insurance". This will create an area in the MLflow Model Registry where you can register versioned models at a later time.

Latihan ini adalah bagian dari kursus

Introduction to MLflow

Lihat Kursus

Petunjuk latihan

  • Import the mlflow client module.
  • Create an instance of the mlflow client class named client.
  • Create a new model named "Insurance".

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Import MLflow Client from MLflow module
from ____ import ____

# Create an instance of MLflow Client Class named client
____ = ____

# Create new model
____.____("____")
Edit dan Jalankan Kode