Question 101

You are preparing to use the Azure ML SDK to run an experiment and need to create compute. You run the following code:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

Question 102

You are performing clustering by using the K-means algorithm.
You need to define the possible termination conditions.
Which three conditions can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
  • Question 103

    You collect data from a nearby weather station. You have a pandas dataframe named weather_df that includes the following data:

    The data is collected every 12 hours: noon and midnight.
    You plan to use automated machine learning to create a time-series model that predicts temperature over the next seven days. For the initial round of training, you want to train a maximum of 50 different models.
    You must use the Azure Machine Learning SDK to run an automated machine learning experiment to train these models.
    You need to configure the automated machine learning run.
    How should you complete the AutoMLConfig definition? To answer, select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    Question 104

    You need to set up the Permutation Feature Importance module according to the model training requirements.
    Which properties should you select? To answer, select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    Question 105

    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,f2,l
    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?