"java code for each operator"
Hi Guys,
If I have a model built in RM, how can I found the java code for each operator in my model? like where is the code for the SVM if was inside X-Validation? or where is the code for DF/ITF found in the process files from document block? Please help.
Moderator. if this is already answered, I'm sorry couldn't find where.
If I have a model built in RM, how can I found the java code for each operator in my model? like where is the code for the SVM if was inside X-Validation? or where is the code for DF/ITF found in the process files from document block? Please help.
Moderator. if this is already answered, I'm sorry couldn't find where.
Find more posts tagged with
Sort by:
1 - 7 of
71
I managed to run the rapid miner through Eclipse, it made it for some reason faster to run, I can see all the source code, but still can't track where is each block from my model code in the tree. I gave an example the SVM and I know it will be the same where ever you move it, just wanted to know where to find the code for each part of my model so I understand things in a better way. Thanks
Ok, if you already have RapidMiner inside eclipse it makes things way easier 
The RapidMiner core contains a file called OperatorsCoreDocumentation.xml which contains the documentation for all operators. Here you can search for the name of the operator and then find its key.
Then open OperatorsCore.xml and search for the key. Then you'll find the class name of the operator next to the key.
For operators from extensions you have to also checkout the extension and then search for the file Operators[NameOfPlugin]Documentation.xml
Best,
Marius

The RapidMiner core contains a file called OperatorsCoreDocumentation.xml which contains the documentation for all operators. Here you can search for the name of the operator and then find its key.
Then open OperatorsCore.xml and search for the key. Then you'll find the class name of the operator next to the key.
For operators from extensions you have to also checkout the extension and then search for the file Operators[NameOfPlugin]Documentation.xml
Best,
Marius
Thanks for the great help, this actually help me a great deal. But I found for example "process_document_from_data" in the "OperatorsCoreDocumentation.xml" but could't find this key in the "OperatorsCore.xml". I did found the SVM for example but not the process document from files neither the "N-Gram" or "Stopword". if these operators are present in the OperatorsCoreDocumentation.xml so why I couldn't find them in the OperatorsCore.xml file?
Your help is greatly appreciated, you really shorten the distance for getting into this. Thanks
Your help is greatly appreciated, you really shorten the distance for getting into this. Thanks
RapidMiner is written entirely in Java. You can download the java sources from our website at http://rapid-i.com , but it will be pretty hard to dig through the source code if you have no programming experience.
The code used to create e.g. an SVM is the same no matter if the SVM is used inside a X-Validation or elsewhere.
All the best,
Marius