exam questions

Exam AI-100 All Questions

View all questions & answers for the AI-100 exam

Exam AI-100 topic 4 question 32 discussion

Actual exam question from Microsoft's AI-100
Question #: 32
Topic #: 4
[All AI-100 Questions]

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are deploying an Azure Machine Learning model to an Azure Kubernetes Service (AKS) container.
You need to monitor the scoring accuracy of each run of the model.
Solution: You modify the scoring file.
Does this meet the goal?

  • A. Yes
  • B. No
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
BwandoWando
Highly Voted 4 years, 1 month ago
This is a YES if you download the actual code that Microsoft has shared in GITHUB for DP-100 review material https://microsoftlearning.github.io/mslearn-dp100/ you can go to NOTEBOOK "16 - Monitor a Model.ipynb" You need to MODIFY the scoring script and you need to add snippet(s) code of that after you get the prediction of a model you are monitoring, you use application insights to log the prediction. So, answer is yes.
upvoted 6 times
...
rveney
Most Recent 2 years ago
B. No Modifying the scoring file does not meet the goal of monitoring the scoring accuracy of each run of the model. Instead, you can use Azure Machine Learning's monitoring capabilities to monitor the scoring accuracy of each run of the model. You can use the Azure Machine Learning SDK to enable monitoring for your models and configure the metrics to monitor. You can also use Azure Machine Learning's Application Insights integration to monitor the performance and usage of your models. You can use the Azure Machine Learning SDK to log custom metrics and events from your scoring script, and you can use the Azure Machine Learning Studio to view and analyze the logs. You can also use Azure Machine Learning's model explainability features to understand how your model is making predictions and identify potential issues with the model
upvoted 1 times
...
claudiapatricia777
3 years, 7 months ago
This is a NO, the solution is to use a DataDrift Monitor: Over time, models can become less effective at predicting accurately due to changing trends in feature data. This phenomenon is known as data drift, and it's important to monitor your machine learning solution to detect it so you can retrain your models if necessary. https://github.com/MicrosoftLearning/mslearn-dp100/blob/main/17%20-%20Monitor%20Data%20Drift.ipynb
upvoted 1 times
...
Arockia
4 years, 1 month ago
The answer is Yes. Open the scoring file and need to add the following code at the top of the file: from azureml.monitoring import ModelDataCollector
upvoted 4 times
...
OzgurG
4 years, 3 months ago
You configure Azure Application Insights.
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 ...