Exam Certified Machine Learning Professional All QuestionsBrowse all questions from this 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?

    Correct Answer: C

    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
GVR76Option: C

Answer is C

victorcolome

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

spaceexplorerOption: C

C is correct