DP-100 Exam Question 61

You need to use the Python language to build a sampling strategy for the global penalty detection models.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

DP-100 Exam Question 62

You are building recurrent neural network to perform a binary classification.
The training loss, validation loss, training accuracy, and validation accuracy of each training epoch has been provided. You need to identify whether the classification model is over fitted.
Which of the following is correct?
  • DP-100 Exam Question 63

    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 a model to forecast weather conditions based on historical data.
    You need to create a pipeline that runs a processing script to load data from a datastore and pass the processed data to a machine learning model training script.
    Solution: Run the following code:

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

    You publish a batch inferencing pipeline that will be used by a business application.
    The application developers need to know which information should be submitted to and returned by the REST interface for the published pipeline.
    You need to identify the information required in the REST request and returned as a response from the published pipeline.
    Which values should you use in the REST request and to expect in the response? To answer, select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    DP-100 Exam Question 65

    You create an Azure Machine Learning pipeline named pipeline 1 with two steps that contain Python scnpts. Data processed by the first step is passed to the second step.
    You must update the content of the downstream data source of pipeline 1 and run the pipeline again.
    You need to ensure the new run of pipeline 1 fully processes the updated content.
    Solution: Change the value of the compute.target parameter of the PythonScriptStep object in the two steps.
    Does the solution meet the goal'