Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Machine Learning Professional All Questions

View all questions & answers for the Certified Machine Learning Professional exam

Exam Certified Machine Learning Professional topic 1 question 48 discussion

Actual exam question from Databricks's Certified Machine Learning Professional
Question #: 48
Topic #: 1
[All Certified Machine Learning Professional Questions]

A machine learning engineer is manually refreshing a model in an existing machine learning pipeline. The pipeline uses the MLflow Model Registry model "project". The machine learning engineer would like to add a new version of the model to "project".
Which of the following MLflow operations can the machine learning engineer use to accomplish this task?

  • A. mlflow.register_model
  • B. MlflowClient.update_registered_model
  • C. mlflow.add_model_version
  • D. MlflowClient.get_model_version
  • E. The machine learning engineer needs to create an entirely new MLflow Model Registry model
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Mircuz
4 months, 2 weeks ago
Selected Answer: A
update_registered_model allows you to update model description, the right choice should be A
upvoted 1 times
...
64934ca
4 months, 3 weeks ago
Strike that, it's A...we're registering a new model, not updating the existing.
upvoted 1 times
...
64934ca
4 months, 3 weeks ago
Selected Answer: B
Because the model name already exists, meaning it's registered already, and it's being refreshed: per docs: Updates metadata for RegisteredModel entity. Input field description should be non-None. Backend raises exception if a registered model with given name does not exist.
upvoted 1 times
...
yunyunqian
5 months, 3 weeks ago
I think the model is already registered, the answer should be B
upvoted 1 times
...
hugodscarvalho
10 months ago
Selected Answer: A
mlflow.register_model will create a new model version in the model registry for the model files specified by model_uri. Doc: https://mlflow.org/docs/latest/python_api/mlflow.html#mlflow.register_model
upvoted 1 times
...
BokNinja
11 months, 1 week ago
Answer is A import mlflow model_uri = "runs:/d16076a3ec534311817565e6527539c0/model" model_details = mlflow.register_model( model_uri=model_uri, name="project" )
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...