Certified Machine Learning Professional Exam QuestionsBrowse all questions from this exam

Certified Machine Learning Professional Exam - Question 57


Which of the following MLflow operations can be used to delete a model from the MLflow Model Registry?

Show Answer
Correct Answer: E

To delete a model from the MLflow Model Registry, the operation client.delete_registered_model can be used. This function removes the entire registered model, including all its versions. Other functions like client.delete_model_version only remove specific versions of the model but do not delete the registered model itself.

Discussion

1 comment
Sign in to comment
victorcolomeOption: E
Jan 19, 2024

The correct answer is E. https://mlflow.org/docs/latest/model-registry.html#deleting-mlflow-models

03355a2
Jun 27, 2024

Looks like in the link you provided that B would be correct.