The input data in the model includes column ControlNo.
But I don't want this column being part of learning process so I'm using Select Columns in Dataset
to exclude ControlNo
column.
But as a output I want those columns:
ControlNo, Score Label, Score Probability
So basically I need NOT to include column ControlNo
into learning process,
but have it as output along with Score Label
column.
How can I do that?
Instead of removing the ControlNo column from the dataset, you can use the Edit Metadata module to clear its "Feature" flag - just select the column and set Fields to Clear feature.
This will cause the Azure ML Studio algorithms to ignore it during training, and you'll be able to return it as part of your output.