0
0
MLOpsdevops~10 mins

ML lifecycle stages in MLOps - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to name the first stage of the ML lifecycle.

MLOps
stage = "[1]"  # First stage in ML lifecycle
Drag options to blanks, or click blank then click option'
ADeployment
BData Collection
CMonitoring
DModel Training
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Model Training' as the first stage.
Confusing 'Deployment' with the start of the process.
2fill in blank
medium

Complete the code to name the stage where the model learns from data.

MLOps
stage = "[1]"  # Stage where model learns
Drag options to blanks, or click blank then click option'
AModel Training
BDeployment
CEvaluation
DData Preprocessing
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Evaluation' instead of training.
Confusing 'Deployment' with training.
3fill in blank
hard

Fix the error in naming the stage where the model's performance is checked.

MLOps
stage = "[1]"  # Stage to check model performance
Drag options to blanks, or click blank then click option'
AData Collection
BDeployment
CTraining
DEvaluation
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'Training' instead of 'Evaluation'.
Confusing 'Deployment' with evaluation.
4fill in blank
hard

Fill both blanks to name the stages for preparing data and putting the model into use.

MLOps
stages = ["[1]", "[2]"]  # Data prep and model use stages
Drag options to blanks, or click blank then click option'
AData Preprocessing
BModel Training
CDeployment
DEvaluation
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up 'Evaluation' with 'Deployment'.
Choosing 'Training' for data preparation.
5fill in blank
hard

Fill all three blanks to complete the dictionary showing model name, accuracy, and status.

MLOps
model_info = {"name": "[1]", "accuracy": [2], "status": "[3]"}
Drag options to blanks, or click blank then click option'
ARandomForest
B0.92
Cdeployed
DSVM
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'SVM' instead of 'RandomForest' for the model name.
Putting accuracy as a string instead of a number.