You are building an Azure Machine Learning experiment.
You need to transform a string column into a label column for a Multiclass Decision Jungle module.
Which module should you use?
A.
Select Columns Transform
B.
Group Categorical Values
C.
Convert to Indicator Values
D.
Edit Metadata
These are not sufficient questions. There are many others like drag and drop modules in AML to create regression model, etc
2017 New 70-774 Exam Dumps and 70-774 PDF Dumps:https://www.braindump2go.com/70-774.html
Edit Metadata
・Treating Boolean or numeric columns as categorical values
・Indicating which column contains the class label, or the values you want to categorize or predict
・Marking columns as features
・Changing date/time values to a numeric value, or vice versa
・Renaming columns
Convert to Indicator Values
・The purpose of this module is to convert columns that contain categorical values into a series of binary indicator columns that can more easily be used as features in a machine learning model.
FROM:
Server ID Failure score
10301 Low
10302 Medium
10303 High
TO:
Server ID Failure score – Low Failure score – Medium Failure score – High
10301 1 0 0
10302 0 1 0
10303 0 0 1