DP-100 Exam Question 66

You plan to explore demographic data for home ownership in various cities. The data is in a CSV file with the following format:
age,city,income,home_owner
21,Chicago,50000,0
35,Seattle,120000,1
23,Seattle,65000,0
45,Seattle,130000,1
18,Chicago,48000,0
You need to run an experiment in your Azure Machine Learning workspace to explore the data and log the results. The experiment must log the following information:
the number of observations in the dataset
a box plot of income by home_owner
a dictionary containing the city names and the average income for each city You need to use the appropriate logging methods of the experiment's run object to log the required information.
How should you complete the code? To answer, drag the appropriate code segments to the correct locations. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

DP-100 Exam Question 67

You create a binary classification model using Azure Machine Learning Studio.
You must use a Receiver Operating Characteristic (RO C) curve and an F1 score to evaluate the model.
You need to create the required business metrics.
How should you complete the experiment? To answer, select the appropriate options in the dialog box in the answer area.
NOTE: Each correct selection is worth one point.

DP-100 Exam Question 68

You are developing a hands-on workshop to introduce Docker for Windows to attendees.
You need to ensure that workshop attendees can install Docker on their devices.
Which two prerequisite components should attendees install on the devices? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
  • DP-100 Exam Question 69

    You use Azure Machine Learning to implement hyperparameter tuning with a Bandit early termination policy.
    The policy uses a slack_factor set to 01. an evaluation interval set to 1, and an evaluation delay set to b.
    You need to evaluate the outcome of the early termination policy
    What should you evaluate? To answer, select the appropriate options m the answer area.
    NOTE: Each correct selection is worth one point.

    DP-100 Exam Question 70

    You run an experiment that uses an AutoMLConfig class to define an automated machine learning task with a maximum of ten model training iterations. The task will attempt to find the best performing model based on a metric named accuracy.
    You submit the experiment with the following code:
    You need to create Python code that returns the best model that is generated by the automated machine learning task. Which code segment should you use?