Example Request for ClusterIteration

ema
ema New Altair Community Member
edited November 5 in Community Q&A
Hi all,

Can anyone post an xml example of how to use the clusteriteration operator

Thanx
Tagged:

Answers

  • land
    land New Altair Community Member
    Hi,
    the ClusterIteration operator splits up the input example set according to the clusters and applies its inner operators once per cluster. This requires the example set to have a special cluster attribute which can be either created by a Clusterer or might be declared in the attribute description file that was used when the data was loaded.

    The following example process generates data and clusters it using kMeans. After this the examples of one cluster are written into files. The filename contains the %{a} macro beeing replaced by the number of the iteration the operator is executed.
    <operator name="Root" class="Process" expanded="yes">
        <operator name="ExampleSetGenerator" class="ExampleSetGenerator">
            <parameter key="number_examples" value="1000"/>
            <parameter key="target_function" value="gaussian mixture clusters"/>
        </operator>
        <operator name="KMeans" class="KMeans">
            <parameter key="k" value="5"/>
        </operator>
        <operator name="ClusterIteration" class="ClusterIteration" expanded="yes">
            <operator name="ExampleSetWriter" class="ExampleSetWriter">
                <parameter key="attribute_description_file" value="/cluster%{a}.aml"/>
                <parameter key="example_set_file" value="/cluster%{a}.dat"/>
            </operator>
        </operator>
    </operator>
    The exmapleSetwriter might be replaced by an arbitrary number of operators, doing what ever you want with the exampleSet containing all examples of the current cluster...

    Greetings,
      Sebastian
  • ema
    ema New Altair Community Member
    Thank you very much  :)