Certified Machine Learning Professional Exam QuestionsBrowse all questions from this exam

Certified Machine Learning Professional Exam - Question 59


A machine learning engineer wants to view all of the active MLflow Model Registry Webhooks for a specific model.

They are using the following code block:

Which of the following changes does the machine learning engineer need to make to this code block so it will successfully accomplish the task?

Show Answer
Correct Answer: CD

To successfully view all active MLflow Model Registry Webhooks for a specific model, the engineer needs to use a GET request, not a POST request. The GET method is appropriate for retrieving data, while POST is generally used for creating or updating resources. Hence, the correct modification in the code block is to replace POST with GET in the call to http_request.

Discussion

2 comments
Sign in to comment
GVR76Option: C
Jan 10, 2024

Answer is C

victorcolome
Jan 19, 2024

Correct: https://docs.databricks.com/en/mlflow/model-registry-webhooks.html#list-registry-webhooks-example

spaceexplorerOption: C
Feb 2, 2024

C is correct