Databricks Certified Machine Learning Professional — Question 56
Which of the following MLflow operations can be used to delete a model from the MLflow Model Registry?
Answer options
- A. client.transition_model_version_stage
- B. client.delete_model_version
- C. client.update_registered_model
- D. client.delete_model
- E. client.delete_registered_model
Correct answer: E
Explanation
The correct answer is E, as 'client.delete_registered_model' is specifically designed to remove a model from the registry. The other options either deal with model versions or updating models, but do not serve the purpose of deleting the model itself from the registry.