Do Not Use Certain Attributes in Prediction


Hi, I have attributes that are useful as information in a training and scored example set, but I do not want them to be used in my learning model. How do I set an attribute so it comes along for the ride as training or scored data in the examples, but is not used for learning? I don't see a target role that allows data to be consumed like a "comment" or such.
thanks
0
Answers
You would most likely need to split your data set prior to training and then join it back together afterwards, like this:
The Set Role operator isn't just limited to the listed options. You can type whatever you like in there & make the field special.
Here's an example.
@JEdward 's proposed solution is far more elegant than mine and is the way to go in this kind of situations.