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.
Where to write the solution Code
I have a lot of questions, and when I search for a solution I find some answers that could be done using codes such as the following; However, my question is where should I write this code to solve the problem!?
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<process version="5.3.008">
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="5.3.008" expanded="true" name="Process">
<process expanded="true">
<operator activated="true" class="retrieve" compatibility="5.3.008" expanded="true" height="60" name="Retrieve Iris" width="90" x="45" y="30">
<parameter key="repository_entry" value="//Samples/data/Iris"/>
</operator>
<operator activated="true" class="hierarchical_multi_class_classification" compatibility="5.3.008" expanded="true" height="76" name="Hierarchical Classification" width="90" x="179" y="30">
<list key="hierarchy">
<parameter key="versicolor_virginica" value="Iris-versicolor"/>
<parameter key="versicolor_virginica" value="Iris-virginica"/>
<parameter key="root" value="Iris-setosa"/>
<parameter key="root" value="versicolor_virginica"/>
</list>
<process expanded="true">
<operator activated="true" class="support_vector_machine" compatibility="5.3.008" expanded="true" height="112" name="SVM" width="90" x="179" y="30"/>
<connect from_port="training set" to_op="SVM" to_port="training set"/>
<connect from_op="SVM" from_port="model" to_port="model"/>
<portSpacing port="source_training set" spacing="0"/>
<portSpacing port="sink_model" spacing="0"/>
</process>
</operator>
<connect from_op="Retrieve Iris" from_port="output" to_op="Hierarchical Classification" to_port="training set"/>
<connect from_op="Hierarchical Classification" from_port="model" to_port="result 2"/>
<connect from_op="Hierarchical Classification" from_port="example set" to_port="result 1"/>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="0"/>
<portSpacing port="sink_result 2" spacing="0"/>
<portSpacing port="sink_result 3" spacing="0"/>
</process>
</operator>
</process>
0
Best Answer
-
rfuentealba RapidMiner Certified Analyst, Member, University Professor Posts: 568 UnicornHello,
That is not "code to be written somewhere" but rather "the source code of a process".
Do the following:- Save your RapidMiner process.
- Go to View > Show Panel > XML.
- Place your new panel in a position that makes it comfortable to use.
- Copy the content you want to use.
- Click the green button to check it's going OK.
- Go back to the Process view and it will show you the entire process.
- Now you have to analyse it so that you get your answers.
All the best,
Rodrigo.3