Which of the following MLflow operations can be used to delete a model from the MLflow Model Registry?
Which of the following MLflow operations can be used to delete a model from the MLflow Model Registry?
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.
The correct answer is E. https://mlflow.org/docs/latest/model-registry.html#deleting-mlflow-models
Looks like in the link you provided that B would be correct.