我需要帮助从NetBeans内部运行一个进程
哈罗。我想我有一个典型的问题,如何从RapidMiner内部运行我的NetBeans进程?
我知道问题就在路上,因为我读了很多关于它的文章,但是没有任何答案能让我真正理解这个解决方案。
我的代码是
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()先谢谢你
发布于 2018-11-01 00:02:56
问题是,solved..if --任何人都面临同样的问题--从RapidMiner Studio中用"read“操作符替换”检索“操作符
https://stackoverflow.com/questions/50162700
复制相似问题