DP-100 Exam Question 116

You are analyzing a dataset containing historical data from a local taxi company. You arc developing a regression a regression model.
You must predict the fare of a taxi trip.
You need to select performance metrics to correctly evaluate the- regression model.
Which two metrics can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
  • DP-100 Exam Question 117

    You create an Azure Machine Learning workspace.
    You must configure an event-driven workflow to automatically trigger upon completion of training runs in the workspace. The solution must minimize the administrative effort to configure the trigger.
    You need to configure an Azure service to automatically trigger the workflow.
    Which Azure service should you use?
  • DP-100 Exam Question 118

    You have a Python script that executes a pipeline. The script includes the following code:
    from azureml.core import Experiment
    pipeline_run = Experiment(ws, 'pipeline_test').submit(pipeline)
    You want to test the pipeline before deploying the script.
    You need to display the pipeline run details written to the STDOUT output when the pipeline completes.
    Which code segment should you add to the test script?
  • DP-100 Exam Question 119

    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 in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
    You create an Azure Machine Learning service datastore in a workspace. The datastore contains the following files:
    * /data/2018/Q1.csv
    * /data/2018/Q2.csv
    * /data/2018/Q3.csv
    * /data/2018/Q4.csv
    * /data/2019/Q1.csv
    All files store data in the following format:
    id,f1,f2i
    1,1.2,0
    2,1,1,
    1 3,2.1,0
    You run the following code:

    You need to create a dataset named training_data and load the data from all files into a single data frame by using the following code:

    Solution: Run the following code:

    Does the solution meet the goal?
  • DP-100 Exam Question 120

    You have a dataset that includes confidential dat
    a. You use the dataset to train a model.
    You must use a differential privacy parameter to keep the data of individuals safe and private.
    You need to reduce the effect of user data on aggregated results.
    What should you do?