Easy-to-use visual environment for predictive analytics. No programming required. RapidMiner is easily the most powerful and intuitive graphical user interface for the design of analysis processes. Forget sifting through code! You can also choose to run in batch mode. Whatever you prefer, RapidMiner has it all.
This project contains the open source core of RapidMiner Studio.
- Install RapidMiner Studio
- Have a look at our Getting Started Central
- You miss something? There might be an Extension for it
- Have questions? Check out our official community and documentation
Using Gradle:
apply plugin: 'java'
repositories {
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}
dependencies {
compile group: 'com.rapidminer.studio', name: 'rapidminer-studio-core', version: '+'
}
Using Maven:
<project>
...
<repositories>
<repository>
<id>rapidminer</id>
<url>https://maven.rapidminer.com/content/groups/public/</url>
</repository>
</repositories>
...
<dependency>
<groupId>com.rapidminer.studio</groupId>
<artifactId>rapidminer-studio-core</artifactId>
<version>LATEST</version>
</dependency>
...
</project>
- Clone rapidminer-studio using git into a folder named
rapidminer-studio-core
- Execute
gradlew jar
- The jar file is located in build/libs
Please have in mind that the jar file still require all dependencies listed in the build.gradle file.
- Your IDE has to support Gradle projects.
- Install Gradle 2.3+
- Install and configure a Gradle plugin for your IDE
- Import rapidminer-studio-core as a Gradle project
To start the graphical user interface of RapidMiner Studio Core create a new GuiLauncher.java
file in src/main/java and run it with your IDE. If you want to use the generated jar, add the jar and all dependencies to the Java class path java -cp "all;required;jars" GuiLauncher
. You can list the runtime dependencies by executing gradlew dependencies --configuration runtime
.
import com.rapidminer.gui.RapidMinerGUI;
class GuiLauncher {
public static void main(String args[]) throws Exception {
System.setProperty(PlatformUtilities.PROPERTY_RAPIDMINER_HOME, Paths.get("").toAbsolutePath().toString());
RapidMinerGUI.registerStartupListener(new ToolbarGUIStartupListener());
RapidMinerGUI.main(args);
}
}
Prerequisite: Start the RapidMiner Studio GUI at least once and accept the EULA.
To run RapidMiner Studio in command line mode create a new CliLauncher.java
file in src/main/java with the following content:
import com.rapidminer.RapidMiner;
class CliLauncher {
public static void main(String args[]) throws Exception {
System.setProperty(PlatformUtilities.PROPERTY_RAPIDMINER_HOME, Paths.get("").toAbsolutePath().toString());
RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
RapidMiner.init();
}
}
- Create your own Extension
- Integrate RapidMiner Studio Core into your project
- And much more at our Developer Board
See the LICENSE file.