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
Understanding Rapid Miner Model Values
I want to train the model using RapidMiner and test using my own evaluator function in C#. For that purpose, I want to interpret the model values so that I can use it in c#.
As per my knowledge, RapidMiner uses a common format for its model files where the first line lists the learner used like
com.rapidminer.operator.learner.functions.kernel.JMySVMModel
and then there is long list of attributes ID/Values ???
what may be a good starting point in this direction?
As per my knowledge, RapidMiner uses a common format for its model files where the first line lists the learner used like
com.rapidminer.operator.learner.functions.kernel.JMySVMModel
and then there is long list of attributes ID/Values ???
what may be a good starting point in this direction?
0
Answers
you could spend ages for reimplementing the model application functionality in C#, then again spend some years testing if the results are the same as in RapidMiner and finally you will ask yourself, why you didn't rewrite the evaluation in java. This should be easier, isn't it?
At least it should be easier to use the JNI interface to connect to your C# or use some sort of a webservice for this. I don't see any other feasible solution, unless you are willing to wait, until we publish the PMML Export Extension, which will export some of the models in a standardized way.
Greetings,
Sebastian
You are absolutely right but my requirements are little different.
The aim of my project is to show the efficiency of supervised learning algorithms in .Net (Training time doesn't matter, Testing time do). To this end, I tried JNI to evaluate my models but they are taking too much time in marshaling/de-marshalling rather than the actual processing. Web services are, I believe, slower than JNI.
Now I am thinking to show the runtime of at least some simple algorithms like Naive Bayes by training the model in RapidMiner and using that in my C# evaluator. For Naive Bayes testing, I believe we need prior and posterior probabilities. If I am able to parse the RM model, I can use the values in .Net. Similarly for SVM, if there is some way to output the model in LibSVM format, I can use LibSVM implementation of C# to use that.
Lastly, how much (tentatively) we will have to wait for PMML Export Extension of RM algorithms?
Best Regards,
Gerrard.
if you really need it (and if it's still easier than reimplementing the learning algorithms in .net, too), I would write them out as pure xml. This should be quite understandable. Each member variable of the model class is represented by an xml tag of the same name. If you take the source code of the rapid miner model, you will see, which member variable is used for what.
More complex models might become more complicated, but naive bayes is simple.
Greetings,
Sebastian