ExampleSet2ClusterModel

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

Can any one please post an example (in xml) of how to use the new operator

ExampleSet2ClusterModel


Thank you
Tagged:

Answers

  • land
    land New Altair Community Member
    Hi,
    this operator creates a flat cluster model using a nominal attribute and dividing the exampleset by this attribute over the clusters. Every value is mapped onto a cluster, including the unkown value. This operator will create a cluster attribute if not present yet.
    <operator name="Root" class="Process" expanded="yes">
        <operator name="NominalExampleSetGenerator" class="NominalExampleSetGenerator">
        </operator>
        <operator name="ExampleSet2ClusterModel" class="ExampleSet2ClusterModel">
            <parameter key="attribute" value="att1"/>
            <parameter key="keep_example_set" value="true"/>
        </operator>
        <operator name="ClusterModel2ExampleSet" class="ClusterModel2ExampleSet">
        </operator>
    </operator>
    Greetings,
      Sebastian
  • ema
    ema New Altair Community Member
    Thank you very much I really appreciate it