Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
Answers
sounds really like fun I think you will either have to use the Java native interface JNI or use a webservice, which takes the data and runs the process on it and returns the results in an appropriate form. We currently provide some webservices, so if you don't want to write it on your own and host your own server, you might want to contact us.
Greetings,
Sebastian
thanks for reply. I look at JNI, IKVM, webservices and it look great.At this point I decrease my goals and I try using rapidminer in C# app rather than integrating.I choose simple solution via System.Diagnostics.Process.Start() method. However there is some sort of tedious problem. When i run the code in C# in Visual studio 2008 or directly from comand line, it ends up with error: [Fatal] Cannot read config file C:/Program Files/Rapid-I/RapidMiner/scripts/01_ParameterOptimization.xml! Here is the source code: I cant imagine where is the bug.In Java via metod RapidMiner. init() and process.run() everything works well.
Cheers,
Andrew
I guess, your process files is either not existing, misspelled or simply must be quoted.
Greetings,
Sebastian
adding escaped quotes fix my problem.Thanks.
Cheers,
Andrew
Any one used IKVM tool to run the RM from .NET application?