The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"How to change role for attributes specified by regex?"
I have a group of attributes I want to change to a custom "donotuse" role. This is for data that should not be used in the model, isn't the ID column, but that I want to still keep associated with the predictions and results for other purposes.
What I've tried to do is specify a regular expression that identifies the attributes, and have a single ChangeAttributeRole nested inside. The FeatureIterator seemed like the right choice:
Thanks,
Keith
What I've tried to do is specify a regular expression that identifies the attributes, and have a single ChangeAttributeRole nested inside. The FeatureIterator seemed like the right choice:
But that only changes the role for the duration of that loop iteration. AttributeSubsetPreprocessing specifically says that role change are not preserved, so that's out. What's the right way to do it?
<operator name="FeatureIterator" class="FeatureIterator" expanded="yes">
<parameter key="filter" value="(name|address|city|state|zip)"/>
<operator name="ChangeAttributeRole" class="ChangeAttributeRole">
<parameter key="name" value="%{loop_feature}"/>
<parameter key="target_role" value="donotuse"/>
</operator>
</operator>
Thanks,
Keith
Tagged:
0
Answers
Just a few remarks:
First: I tried to do this using the AttributeSubsetPreprocessing...which worked I admit that AttributSubsetProcessing is useless here...
However, giving the both roles the same name, did not work (change "donotuse2" to "donotuse" in the setup above). I guess it is a rule that a role can occur just once in an ExampleSet. In this case we need a special-default role, indeed or a switchon-switchoff-operator
Second: It is possible to build a workaround with ParameterIteration, ExampleSetJoin etc ( I love the modelling abilities of RM)... but in this case you are better of changing every attribute "manually"
greetings
Steffen
we just have added a new parameter to the "FeatureIterator" operator named "work_on_input". If you set this parameter to false, the output of the last loop run will be used as input for the next loop and finally returned. Here is an example: Cheers,
Ingo
yes, it is. Basic information about downloading and installing the CVS version can be found here:
http://rapid-i.com/content/view/25/48/
Please note, however, that we have introduced a new developer branch into CVS named "Zaniah". So you will no longer have to checkout the "HEAD" branch but the branch "Zaniah" in order to get the latest features. The HEAD branch is now our bugfix branch where only bugfixed but no new feature will be added.
Cheers,
Ingo