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

A machine learning engineering manager has asked all of the engineers on their team to add text descriptions to each of the model projects in the MLflow Model Registry. They are starting with the model project "model" and they'd like to add the text in the model_description variable.

The team is using the following line of code:

Which of the following changes does the team need to make to the above code block to accomplish the task?

    Correct Answer: B

    The provided code block uses the MlflowClient's update_registered_model method correctly to update the description of a registered model. The method takes the model name and the description as parameters. Therefore, the code block is accurate as it stands and does not require any changes.

Discussion
victorcolomeOption: B

The correct answer is B, according to documentation this is the correct code to update a model description https://mlflow.org/docs/latest/python_api/mlflow.client.html#mlflow.client.MlflowClient.update_registered_model