Hello ^_^
i'm sorry but i guess i have the typical question , how can i run my process from inside the NetBeans
i know the problem here is in the path because i read a lot about this problem but no answer could really make me understand the solution
my code is
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();
what is the exact path should i use here or using the other method
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()
thank you in advance