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
"Bug - Using RapidMiner from Java-Application"
Hello,
when calling RapidMiner from Java I tried to use the init-Method from the RapidMiner.java:
RapidMiner.java, Line 207:
public static void init(InputStream operatorsXMLStream,
File pluginDir,
boolean addWekaOperators,
boolean searchJDBCInLibDir,
boolean searchJDBCInClasspath,
boolean addPlugins) {
init(operatorsXMLStream, null, pluginDir, addWekaOperators, searchJDBCInLibDir, searchJDBCInClasspath, addPlugins);
}
I noticed that this should read:
init(operatorsXMLStream, pluginDir, null, addWekaOperators, searchJDBCInLibDir, searchJDBCInClasspath, addPlugins);
I'm still working with RM 4.4 so perhaps you already fixed this bug.
Greetings,
Daniel
when calling RapidMiner from Java I tried to use the init-Method from the RapidMiner.java:
RapidMiner.java, Line 207:
public static void init(InputStream operatorsXMLStream,
File pluginDir,
boolean addWekaOperators,
boolean searchJDBCInLibDir,
boolean searchJDBCInClasspath,
boolean addPlugins) {
init(operatorsXMLStream, null, pluginDir, addWekaOperators, searchJDBCInLibDir, searchJDBCInClasspath, addPlugins);
}
I noticed that this should read:
init(operatorsXMLStream, pluginDir, null, addWekaOperators, searchJDBCInLibDir, searchJDBCInClasspath, addPlugins);
I'm still working with RM 4.4 so perhaps you already fixed this bug.
Greetings,
Daniel
Tagged:
0
Answers
you are right, this was a little mixed up. I fixed this now.
As a small hint: There is a bugtracker available on bugs.rapid-i.com, so you might post new bugs there
Greetings,
Sebastian