Does the solution meet the goal?
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...
Which module should you use?
You are solving a classification task. The dataset is imbalanced. You need to select an Azure Machine Learning Studio module to improve the classification accuracy. Which module should you use?A . Fisher Linear Discriminant Analysis. B. Filter Based Feature Selection C. Synthetic Minority Oversampling Technique (SMOTE) D. Permutation Feature ImportanceView...
Which two code segments can you use to achieve this goal?
You use the following code to define the steps for a pipeline: from azureml.core import Workspace, Experiment, Run from azureml.pipeline.core import Pipeline from azureml.pipeline.steps import PythonScriptStep ws = Workspace.from_config() . . . step1 = PythonScriptStep(name="step1", ...) step2 = PythonScriptsStep(name="step2", ...) pipeline_steps = [step1, step2] You need to add code to...
Does the solution meet the goal?
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...
Which three actions should you perform in sequence?
DRAG DROP You need to correct the model fit issue. 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. View AnswerAnswer: Explanation: Step 1: Augment the data Scenario: Columns...
What should you use?
You are developing a data science workspace that uses an Azure Machine Learning service. You need to select a compute target to deploy the workspace. What should you use?A . Azure Data Lake AnalyticsB . Azure Databrick .C . Apache Spark for HDInsight.D . Azure Container ServiceView AnswerAnswer: D Explanation:...
Which three actions should you perform in sequence?
DRAG DROP You need to define a process for penalty event detection. 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. View AnswerAnswer:
Which environment should you use?
You need to select an environment that will meet the business and data requirements. Which environment should you use?A . Azure HDInsight with Spark MLlibB . Azure Cognitive ServicesC . Azure Machine Learning StudioD . Microsoft Machine Learning ServerView AnswerAnswer: D
Which technique should you use?
You need to implement a new cost factor scenario for the ad response models as illustrated in the performance curve exhibit. Which technique should you use?A . Set the threshold to 0.5 and retrain if weighted Kappa deviates +/- 5% from 0.45.B . Set the threshold to 0.05 and retrain...
How should you complete the code?
HOTSPOT Your Azure Machine Learning workspace has a dataset named real_estate_data. A sample of the data in the dataset follows. You want to use automated machine learning to find the best regression model for predicting the price column. You need to configure an automated machine learning experiment using the Azure...