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

Running RapidMiner Model from my IDE

omereisomereis Member Posts: 4 Contributor I
edited November 2018 in Help
Hi All,
There is a model I've developed in RapidMiner. The model's results sensitive to several parameters.
I'd like to run this model and record the result where the parameters are the arguments.
Running it manually is very tedious and time consuming.
I was wondering if there's a way of running it from and external program, either C++ or Java.

Thanks a lot in advance,
Omer
Tagged:

Answers

  • Marco_BoeckMarco_Boeck Administrator, Moderator, Employee-RapidMiner, Member, University Professor Posts: 1,996 RM Engineering
    Hi,

    if I understood you correctly, you can use a normal RapidMiner process for that. Just change the model parameters from fixed values to macros. You can then for example run the RM process via java and change the macros each time.
    To set a macro as a parameter, just enter

    %{macroName}
    as a parameter value.

    See here for instructions on how to run a RM process via java.

    To change macro values, you can do this:

    MacroHandler handler = operator.getProcess().getMacroHandler();
    handler.addMacro("macroName", "newValue");
    Regards,
    Marco
Sign In or Register to comment.