Which module should you use?

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?

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



Leave a Reply 4

Your email address will not be published. Required fields are marked *


Ruchita

Ruchita

These are not sufficient questions. There are many others like drag and drop modules in AML to create regression model, etc

rai

rai

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

rai

rai

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