
Explanation:
The command mlflow models transition-stage --model-uri models:/MyModel/1 --stage Production is the correct way to transition a model from Staging to Production in the MLflow Model Registry. Here’s why the other options are incorrect:
Ultimate access to all questions.
What is the correct MLflow command to transition a model from the Staging to Production stage in the model registry?
A
mlflow models move --model-name MyModel --version 1 --stage Production
B
mlflow transitions move --model MyModel --to-stage Production --version 1
C
mlflow models transition-stage --model-uri models:/MyModel/1 --stage Production
D
mlflow transition-model --from Staging --to Production --model-name MyModel --version
No comments yet.