Modelstadia

Introductie tot MLflow

Weston Bassler

Senior MLOps Engineer

Softwareomgevingen

Diagram van development-, staging- en productieomgevingen

Introductie tot MLflow

MLflow-modelstadia

  • Toegewezen aan modelversies
  • Vooraf gedefinieerde stadia:

    • None
    • Staging
    • Production
    • Archived
  • Eén stadium tegelijk

Introductie tot MLflow

Vooraf gedefinieerde stadia

Vooraf gedefinieerde stadia

Introductie tot MLflow

None

None-stadium

Introductie tot MLflow

Staging

Staging-stadium

Introductie tot MLflow

Productie

Productiestadium

Introductie tot MLflow

Gearchiveerd

Gearchiveerd stadium

Introductie tot MLflow

Modellen overzetten

transition-ui

# Import MLFlow Client
from mlflow import MlflowClient
client = MlflowClient()

# Transition to Staging client.transition_model_version_stage( name="Unicorn", version=3, stage="Staging" )
Introductie tot MLflow

Modelversie naar Staging zetten

# Transition to Staging
client.transition_model_version_stage(name="Unicorn", version=3, stage="Staging")
<ModelVersion: creation_timestamp=1679693470034, current_stage='Staging', 
description=None, last_updated_timestamp=1679699050734, name='Unicorn', 
run_id='a1454f2865e449f8835f38f71e53e547', run_link=None, 
source='./mlruns/1/a1454f2865e449f8835f38f71e53e547/artifacts/model', 
status='READY', status_message=None, tags={}, user_id=None, version=3>
Introductie tot MLflow

Registry-UI

staging-ui

Introductie tot MLflow

Overzetten naar productie

# Transition to Production
client.transition_model_version_stage(name="Unicorn", version=3, 
                                      stage="Production")
<ModelVersion: creation_timestamp=1679693470034, current_stage='Production', 
description=None, last_updated_timestamp=1679699633297, name='Unicorn', 
run_id='a1454f2865e449f8835f38f71e53e547', run_link=None, 
source='./mlruns/1/a1454f2865e449f8835f38f71e53e547/artifacts/model', 
status='READY', status_message=None, tags={}, user_id=None, version=3>
Introductie tot MLflow

Laten we oefenen!

Introductie tot MLflow

Preparing Video For Download...