0
0
MLOpsdevops~20 mins

Model stages (staging, production, archived) in MLOps - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Model Stage Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Model Stages Purpose

Which statement best describes the purpose of the staging stage in a model lifecycle?

AIt is where the model is tested in an environment similar to production before full deployment.
BIt is the final stage where the model is actively used to make predictions for users.
CIt is where old models are stored and no longer used for predictions.
DIt is the initial phase where the model is being trained and developed.
Attempts:
2 left
💡 Hint

Think about the stage that acts as a 'practice run' before the model goes live.

💻 Command Output
intermediate
2:00remaining
Identifying Model Stage from CLI Output

You run a command to list models and their stages. What is the stage of the model named sales_forecast_v2?

MLOps
Model Name          Stage
sales_forecast_v1   archived
sales_forecast_v2   production
sales_forecast_v3   staging
Astaging
Barchived
Cproduction
Dtraining
Attempts:
2 left
💡 Hint

Look at the row with the model name sales_forecast_v2.

🔀 Workflow
advanced
3:00remaining
Correct Workflow for Promoting a Model to Production

Which sequence correctly describes the workflow to promote a model from staging to production?

A1,2,3,4
B2,1,4,3
C1,3,2,4
D3,1,2,4
Attempts:
2 left
💡 Hint

Think about testing before deploying and cleaning up old models after deployment.

Troubleshoot
advanced
2:00remaining
Troubleshooting Model Stage Mislabeling

You notice a model labeled as production is actually outdated and should not serve predictions. What is the best immediate action?

AIgnore the label and continue using the model.
BDelete the model files from storage immediately.
CRetrain the model and keep the stage as production.
DChange the model stage to <code>archived</code> to prevent it from being used.
Attempts:
2 left
💡 Hint

Think about how to stop the model from being used without losing data.

Best Practice
expert
3:00remaining
Best Practice for Managing Archived Models

What is the best practice for handling archived models in a production system?

AUse archived models as the default for new predictions.
BKeep archived models in a separate storage with restricted access for audit and rollback purposes.
CMove archived models back to staging for retraining without review.
DDelete archived models immediately to save storage space.
Attempts:
2 left
💡 Hint

Consider the importance of old models for audits and recovery.