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
How can I record result description?
The Find threshold operator is an operator that automatically finds the appropriate threshold.
I wanted to store this threshold in Log and print it out with the results of the model, but in Log I couldn't get the threshold found by the Find threshold operator.
So, I want to get the contents of the description of the Find threshold, but I don't know how yet.
Please help.
KHK
0
Best Answer
-
MartinLiebig Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert, University Professor Posts: 3,533 RM Data ScientistHi,the Coverters Extension has an operator to convert thresholds. Not sure about the name, but after installing you should be able to just search for threshold.Cheers,Martin- Sr. Director Data Solutions, Altair RapidMiner -
Dortmund, Germany5
Answers
Thank you for your answer.
Thanks again.
KHK
Dortmund, Germany
So we adopted a method to see the threshold for the result of learning data with the equation by obtaining the equation id obtained as the log result of the best model created by attaching the threshold to model operator after the find threshold operator.
It may seem cumbersome, but this wasn't a problem as it went hand in hand with another process of interpreting the model.
Thanks for your attention!
KHK
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="9.4.000" expanded="true" name="Process" origin="GENERATED_TUTORIAL">
<parameter key="logverbosity" value="init"/>
<parameter key="random_seed" value="2001"/>
<parameter key="send_mail" value="never"/>
<parameter key="notification_email" value=""/>
<parameter key="process_duration_for_mail" value="30"/>
<parameter key="encoding" value="SYSTEM"/>
<process expanded="true">
<operator activated="true" breakpoints="after" class="create_threshold" compatibility="9.8.000" expanded="true" height="68" name="Create Threshold" origin="GENERATED_TUTORIAL" width="90" x="45" y="34">
<parameter key="threshold" value="0.7"/>
<parameter key="first_class" value="negative"/>
<parameter key="second_class" value="positive"/>
</operator>
<operator activated="true" class="execute_script" compatibility="9.8.000" expanded="true" height="82" name="Execute Script" width="90" x="246" y="34">
<parameter key="script" value="import com.rapidminer.operator.text.Document; IOObject inputData = input[0]; return new Document(inputData.toString());"/>
<parameter key="standard_imports" value="true"/>
</operator>
<connect from_op="Create Threshold" from_port="output" to_op="Execute Script" to_port="input 1"/>
<connect from_op="Execute Script" from_port="output 1" to_port="result 1"/>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="0"/>
<portSpacing port="sink_result 2" spacing="21"/>
</process>
</operator>
</process>
Dortmund, Germany