运行 来自 NetBeans 内部的 RapidMiner 进程
Running RapidMiner Proccess from inside NetBeans
我需要帮助 运行从 NetBeans 内部创建一个进程
你好。我想我有一个典型的问题,我如何从 NetBeans
中 运行 我的 RapidMiner 进程
我知道这里的问题出在路径上,因为我读了很多关于它的内容,但没有答案能让我真正理解解决方案
我的密码是
try {
RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
RapidMiner.init();
Process process = new Process (new File("C:\Users\SAR\.RapidMiner\repositories\Local Repository\processes"));//the problem is here and i can't access the repository
process.run();
} catch (IOException | XMLException | OperatorException ex) {
ex.printStackTrace();
}
我应该在这里使用或使用其他方法的确切路径是什么
RepositoryLocation loc = new RepositoryLocation("//Local Repository/Users/SAR/.RapidMiner/repositories/Local Repository/processesKNN2.rmp");//i know the path here is not working right too
Process process = new RepositoryProcessLocation(loc).load(null);
process.run()
提前致谢
问题已解决..如果有人遇到同样的问题,只需在 RapidMiner Studio
中将 "retrieve" 运算符替换为 "read excel" 运算符
我需要帮助 运行从 NetBeans 内部创建一个进程
你好。我想我有一个典型的问题,我如何从 NetBeans
中 运行 我的 RapidMiner 进程我知道这里的问题出在路径上,因为我读了很多关于它的内容,但没有答案能让我真正理解解决方案
我的密码是
try {
RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
RapidMiner.init();
Process process = new Process (new File("C:\Users\SAR\.RapidMiner\repositories\Local Repository\processes"));//the problem is here and i can't access the repository
process.run();
} catch (IOException | XMLException | OperatorException ex) {
ex.printStackTrace();
}
我应该在这里使用或使用其他方法的确切路径是什么
RepositoryLocation loc = new RepositoryLocation("//Local Repository/Users/SAR/.RapidMiner/repositories/Local Repository/processesKNN2.rmp");//i know the path here is not working right too
Process process = new RepositoryProcessLocation(loc).load(null);
process.run()
提前致谢
问题已解决..如果有人遇到同样的问题,只需在 RapidMiner Studio
中将 "retrieve" 运算符替换为 "read excel" 运算符