A program to recognize and reward our most engaged community members
For example , in experiment ExampleSource-Normalization-PrincipalComponentGenerator, I would like to click some checkbox and see in the output all the columns:original attributes, z-transformed attributes and PCs - all in one table.
<operator name="Root" class="Process" expanded="yes"> <operator name="ExampleSetGenerator" class="ExampleSetGenerator"> <parameter key="target_function" value="sum classification"/> </operator> <operator name="IdTagging" class="IdTagging"> </operator> <operator name="IOMultiplier" class="IOMultiplier"> <parameter key="io_object" value="ExampleSet"/> </operator> <operator name="MaterializeDataInMemory" class="MaterializeDataInMemory"> </operator> <operator name="Normalization" class="Normalization"> </operator> <operator name="ExampleSetJoin" class="ExampleSetJoin"> <parameter key="remove_double_attributes" value="false"/> </operator></operator>
Also, add an ability to mark a column "inactive" or "pass-thru", so that is shows in the example set, but is ignored by the operators, like the id type does now.
<operator name="Root" class="Process" expanded="yes"> <operator name="ExampleSetGenerator" class="ExampleSetGenerator"> <parameter key="target_function" value="sum"/> </operator> <operator name="ChangeAttributeRole" class="ChangeAttributeRole"> <parameter key="name" value="att1"/> <parameter key="target_role" value="pass-through"/> </operator> <operator name="LinearRegression" class="LinearRegression"> </operator></operator>
<operator name="Root" class="Process" expanded="yes"> <operator name="ExampleSetGenerator" class="ExampleSetGenerator"> <parameter key="target_function" value="sum classification"/> <parameter key="number_examples" value="200"/> <parameter key="number_of_attributes" value="6"/> </operator> <operator name="FeatureIterator" class="FeatureIterator" expanded="yes"> <parameter key="filter" value="att1|att2"/> <parameter key="work_on_input" value="false"/> <operator name="ChangeAttributeRole" class="ChangeAttributeRole"> <parameter key="name" value="%{loop_feature}"/> <parameter key="target_role" value="ignore%{a}"/> </operator> </operator></operator>