Question 201

You create an Azure Machine learning workspace. The workspace contains a folder named src. The folder contains a Python script named script 1 .py.
You use the Azure Machine Learning Python SDK v2 to create a control script. You must use the control script to run script l.py as part of a training job.
You need to complete the section of script that defines the job parameters.
How should you complete the script? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Question 202

You create a multi-class image classification model with automated machine learning in Azure Machine Learning.
You need to prepare labeled image data as input for model training in the form of an Azure Machine Learning tabular dataset.
Which data format should you use?
  • Question 203

    You need to implement a feature engineering strategy for the crowd sentiment local models.
    What should you do?
  • Question 204

    You use an Azure Machine Learning workspace. Azure Data Factor/ pipeline, and a dataset monitor that runs en a schedule to detect data drift.
    You need to Implement an automated workflow to trigger when the dataset monitor detects data drift and launch the Azure Data Factory pipeline to update the dataset. The solution must minimize the effort to configure the workflow.
    How should you configure the workflow? To answer select the appropriate options in the answer area.
    NOTE: Each correct selection is worth one point.

    Question 205

    You create an Azure Databricks workspace and a linked Azure Machine Learning workspace.
    You have the following Python code segment in the Azure Machine Learning workspace:
    import mlflow
    import mlflow.azureml
    import azureml.mlflow
    import azureml.core
    from azureml.core import Workspace
    subscription_id = 'subscription_id'
    resourse_group = 'resource_group_name'
    workspace_name = 'workspace_name'
    ws = Workspace.get(name=workspace_name,
    subscription_id=subscription_id,
    resource_group=resource_group)
    experimentName = "/Users/{user_name}/{experiment_folder}/{experiment_name}" mlflow.set_experiment(experimentName) uri = ws.get_mlflow_tracking_uri() mlflow.set_tracking_uri(uri) Instructions: For each of the following statements, select Yes if the statement is true. Otherwise, select No.
    NOTE: Each correct selection is worth one point.