A program to recognize and reward our most engaged community members
<operator name="Root" class="Process" expanded="yes"> <operator name="ExampleSetGenerator" class="ExampleSetGenerator"> <parameter key="target_function" value="random"/> <parameter key="number_examples" value="200"/> </operator> <operator name="FeatureNameFilter" class="FeatureNameFilter"> <parameter key="skip_features_with_name" value="a.*"/> <parameter key="except_features_with_name" value="att5"/> </operator> <operator name="ExampleSetWriter" class="ExampleSetWriter"> <parameter key="example_set_file" value="bla"/> </operator></operator>
How do I now view the datasets created so I can see the results of my operators? For example, in the example you give, how do I:- view the first dataset before filtering- view the last dataset after the FeaturenameFilter
<operator name="Root" class="Process" expanded="yes"> <operator name="ExampleSetGenerator" class="ExampleSetGenerator"> <parameter key="target_function" value="random"/> <parameter key="number_examples" value="200"/> </operator> <operator name="FeatureNameFilter" class="FeatureNameFilter" breakpoints="before"> <parameter key="skip_features_with_name" value="a.*"/> <parameter key="except_features_with_name" value="att5"/> </operator> <operator name="ExampleSetWriter" class="ExampleSetWriter"> <parameter key="example_set_file" value="bla"/> </operator></operator>
Where is the reference in the documentation that you mention by the way? I always search the documentation first but found nothing on this basic ETL stuff.
<operator name="Root" class="Process" expanded="yes"> <operator name="ExampleSetGenerator" class="ExampleSetGenerator"> <parameter key="target_function" value="random"/> <parameter key="number_examples" value="200"/> </operator> <operator name="IOMultiplier" class="IOMultiplier"> <parameter key="io_object" value="ExampleSet"/> </operator> <operator name="FeatureNameFilter" class="FeatureNameFilter"> <parameter key="skip_features_with_name" value="a.*"/> <parameter key="except_features_with_name" value="att5"/> </operator> <operator name="ExampleSetWriter" class="ExampleSetWriter"> <parameter key="example_set_file" value="bla"/> </operator></operator>