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 34 discussion

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

A machine learning engineer has registered a sklearn model in the MLflow Model Registry using the sklearn model flavor with UI model_uri.
Which of the following operations can be used to load the model as an sklearn object for batch deployment?

  • A. mlflow.spark.load_model(model_uri)
  • B. mlflow.pyfunc.read_model(model_uri)
  • C. mlflow.sklearn.read_model(model_uri)
  • D. mlflow.pyfunc.load_model(model_uri)
  • E. mlflow.sklearn.load_model(model_uri)
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
hugodscarvalho
10 months ago
Selected Answer: E
Doc: https://mlflow.org/docs/latest/python_api/mlflow.sklearn.html#mlflow.sklearn.load_model
upvoted 1 times
...
BokNinja
11 months, 1 week ago
The correct answer is E. mlflow.sklearn.load_model(model_uri). The mlflow.sklearn.load_model function is used to load a model that was saved using the sklearn flavor of MLflow. This function returns a sklearn model object that can be used for batch deployment
upvoted 2 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 ...