Exam Certified Machine Learning Professional All QuestionsBrowse all questions from this exam
Question 57

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

    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
victorcolomeOption: E

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

03355a2

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