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
Integrate a data mining model with RapidMiner


I have build an algorithm which i need to validate its performance against current modelling tools in rapid miner but am struggling to get this working.
Basically i have a written a script in C# pulling data from a SQL Server. I intend to measure the results of this script against the result of existing data modelling techniques within rapidminer when applied on the same dataset.
Any suggestions please.
Thanks
0
Answers
Does your C# script do the modeling as well? If it only pulls in data from SQL server, you can do all the modeling in RapidMiner by using a Read Database operator to pull in the data.
If your C# script does some analysis, you'll need some sort of performance measures to compare them too in RapidMiner. Are you doing classifcation? Maybe Precision/Recall for the classes, kappa, etc.
You could do a Cross Validation in RapidMiner and export the actual training and test sets. Then apply your algorithm on the training set, apply the resulting model on the test set, and compare with the performance of RapidMiner's learners.