Example Request for ClusterIteration
ema
New Altair Community Member
Hi all,
Can anyone post an xml example of how to use the clusteriteration operator
Thanx
Can anyone post an xml example of how to use the clusteriteration operator
Thanx
Tagged:
0
Answers
-
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">
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...
<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>
Greetings,
Sebastian0 -
Thank you very much0