Hi, I have a small Java app that runs a RapidMiner 5.3 process and it is working pretty well.
Recently, we added the ability to set macro values via the RapidMiner command line and now I need to add support for setting the macro values to my Java code and can't seem to find how to do that. I would think this should be relatively simple to do. Does any example code snippets exist?
Following is a snippet of my current RapidMiner related code:
RapidMiner.setExecutionMode(ExecutionMode.COMMAND_LINE);
RapidMiner.init();
Process rm5 = new Process(new File("/home/petes/Documents/NewRmRepository/FindObjectsStep3Clusters.rmp"));
rm5.run();
Thanks for any guidance or suggestions.
Pete