Question 91

You have several machine learning models registered in an Azure Machine Learning workspace.
You must use the Fairlearn dashboard to assess fairness in a selected model.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Question 92

You are building an intelligent solution using machine learning models.
The environment must support the following requirements:
* Data scientists must build notebooks in a cloud environment
* Data scientists must use automatic feature engineering and model building in machine learning pipelines.
* Notebooks must be deployed to retrain using Spark instances with dynamic worker allocation.
* Notebooks must be exportable to be version controlled locally.
You need to create the environment.
Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Question 93

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 are analyzing a numerical dataset which contain missing values in several columns.
You must clean the missing values using an appropriate operation without affecting the dimensionality of the feature set.
You need to analyze a full dataset to include all values.
Solution: Use the last Observation Carried Forward (IOCF) method to impute the missing data points.
Does the solution meet the goal?
  • Question 94

    You have an Azure Machine Learning workspace. You are running an experiment on your local computer.
    You need to use MLflow Tracking to store metrics and artifacts from your local experiment runs in the workspace.
    In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.

    Question 95

    You create a batch inference pipeline by using the Azure ML SDK. You run the pipeline by using the following code:
    from azureml.pipeline.core import Pipeline
    from azureml.core.experiment import Experiment
    pipeline = Pipeline(workspace=ws, steps=[parallelrun_step])
    pipeline_run = Experiment(ws, 'batch_pipeline').submit(pipeline)
    You need to monitor the progress of the pipeline execution.
    What are two possible ways to achieve this goal? Each correct answer presents a complete solution.
    NOTE: Each correct selection is worth one point.