Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
"protypes making by clustering"
Hi all
I want to use centers of clusters in each class as new data to reduce number of the samples:
as far as I know I should make an iteration among classes and in each class make a cluster and uses centers of clusters as a new sample.
but I do not know how? I made a draft code but I works just to filtering and clustering and it is not able to use and save them.
Regards
REZA
I want to use centers of clusters in each class as new data to reduce number of the samples:
as far as I know I should make an iteration among classes and in each class make a cluster and uses centers of clusters as a new sample.
but I do not know how? I made a draft code but I works just to filtering and clustering and it is not able to use and save them.
Regards
REZA
<operator name="Root" class="Process" expanded="yes">
<operator name="ExampleSetGenerator" class="ExampleSetGenerator">
<parameter key="target_function" value="polynomial classification"/>
<parameter key="number_examples" value="1000"/>
<parameter key="number_of_attributes" value="20"/>
</operator>
<operator name="Normalization" class="Normalization">
<parameter key="create_view" value="true"/>
</operator>
<operator name="protyper" class="OperatorChain" expanded="yes">
<operator name="ValueIterator (2)" class="ValueIterator" expanded="yes">
<parameter key="attribute" value="label"/>
<operator name="ExampleFilter (3)" class="ExampleFilter">
<parameter key="condition_class" value="attribute_value_filter"/>
<parameter key="parameter_string" value="label = %{loop_value}"/>
</operator>
<operator name="KMeans" class="KMeans">
<parameter key="keep_example_set" value="false"/>
<parameter key="k" value="4"/>
</operator>
<operator name="ExceptionHandling" class="ExceptionHandling" expanded="yes">
<operator name="ExampleSetMerge (2)" class="ExampleSetMerge">
</operator>
</operator>
</operator>
<operator name="IOConsumer (2)" class="IOConsumer" breakpoints="after">
<parameter key="io_object" value="ClusterModel"/>
</operator>
<operator name="Final Retrieve (2)" class="IORetriever">
<parameter key="name" value="Cluster Model"/>
<parameter key="io_object" value="ClusterModel"/>
</operator>
</operator>
<operator name="In every case: Store (2)" class="IOStorer">
<parameter key="name" value="Cluster Model"/>
<parameter key="io_object" value="ClusterModel"/>
</operator>
</operator>
Tagged:
0
Answers
unfortunately this isn't possible with the current versions of RapidMiner. Might be, there will be an operator building an example set from a flat cluster model in 5.0.
Greetings,
Sebastian