🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

How to run Rapidminer Process from Java console application?

User: "nom1010"
New Altair Community Member
Updated by Jocelyn

I built a process in Rapidminer Studio (classification with decision tree/neural net), I would like to load this process and run it with different datasets in a Java console application. I read about this here, but I didn't really found a great tutorial/documentation, how to do this, the basic things (load process, change properties, change the training model, ... ). Any advice would be helpful.

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "nom1010"
    New Altair Community Member
    OP
    Accepted Answer

    Thanks! These informations were really helpful.

     

     

    RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
    RapidMiner.init();
    Process process = new Process(new File("/MyProcessFile.rmp"));
    System.out.println(process.run());

     

     Finally I wrote this, after that I got the result. Maybe it'll be useful for others.