The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
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