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
Accessing Confidence Scoring from C# C Sharp
scottkellman
Member Posts: 3 Contributor I
I am brand new to Rapid Miner and have not seen anything regarding my subject line. Has nayone implemented confidence scoring comparing against a learning set comparing to a string of text? Thanks.
Tagged:
0
Answers
Best regards,
Marius
I used the following code to start my process:
ProcessStartInfo Info = new ProcessStartInfo("C:/Program Files/Rapid-I/RapidMiner/scripts/rapidminer.bat");
Info.UseShellExecute = false;
Info.ErrorDialog = false;
Info.CreateNoWindow = true;
Info.RedirectStandardOutput = true;
Info.Arguments = "C:/Program Files/Rapid-I/RapidMiner/scripts/01_ParameterOptimization.xml";
Process p = System.Diagnostics.Process.Start(Info);
System.IO.StreamReader oReader2 = p.StandardOutput;
string sRes = oReader2.ReadToEnd();
oReader2.Close();
the results say RAPIDMINER_HOME is not set...
How do I get results back?
you need to design your RapidMiner process in a way that it stores the results in a repository (see the 'Store' operator) or on the file system itself via 'Write CSV' or 'Write Excel' or any other of the 'Write XYZ' operators. The results of a process will not be returned as output to the commandline. Also please note that RapidMiner is written in Java, so writing to the file system may be the easier way as opposed to use the RM Java library to work with the repository.
Regards,
Marco
Thanks. I am also having problems running the rapidminer.bat from a C# process, it keeps saying that a JDBC driver is missing. Any idea what this is referring to?
Scott
You might give a try with IKVM, I had success starting RM with it (although it might be a good idea to create a backup from your .RapidMiner5 dir first).
Cheers, gabor
Everyone: I just told @rodriguezestefa that I don't see a logic between her question in Spanish and what is being discussed on this thread, so I invited her to talk with me and see how can I help her.
@sgenzer, I also wrote you in private.
All the best,
Rodrigo.