Find more posts tagged with
Sort by:
1 - 8 of
81
Sure, I am trying to run RM from the command line after sending in parameters and hoping to receive a confidence score back based on a learning set to rate the results passed in.
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?
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?
Hi,
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
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
Hola, con respecto a qué están hablando ambos, ¿cómo puedo predecir usando el modelo? Es decir como pasar al modelo nuevo archivo para predecir nuevas instancias? ¿Y la salida, es decir, el resultado, donde se almacena? En teorÃa mi proceso tiene como salida un archivo Excel. (CON write Excel )
cc @rfuentealba 

@rodriguezestefa, ¿quieres que hablemos? No veo la conexión entre tu pregunta en castellano y lo que están conversando en esta pregunta. Te escribà un mensaje en privado.
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.
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.
Best regards,
Marius