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
No operator description 'W-MultilayerPerceptron'
Hi,
I am having trouble trying to use 'W-MultilayerPerceptron' in java. I am initilaising rapidminer:
System.setProperty("rapidminer.home", "file:///C:/Rapid-I/RapidMiner-4.3");
RapidMiner.init();
And rapidMiner.jar and weka.jar are both on the build path. I am trying to create the opertor as follows:
Operator model = OperatorService.createOperator("W-MultilayerPerceptron");
model.setParameter("L", "0.3"); //learning rate
But I always get the following error:
com.rapidminer.operator.OperatorCreationException: No operator description object given for 'W-MultilayerPerceptron'.
I really cant see what i am doing wrong?
Thanks Laura
I am having trouble trying to use 'W-MultilayerPerceptron' in java. I am initilaising rapidminer:
System.setProperty("rapidminer.home", "file:///C:/Rapid-I/RapidMiner-4.3");
RapidMiner.init();
And rapidMiner.jar and weka.jar are both on the build path. I am trying to create the opertor as follows:
Operator model = OperatorService.createOperator("W-MultilayerPerceptron");
model.setParameter("L", "0.3"); //learning rate
But I always get the following error:
com.rapidminer.operator.OperatorCreationException: No operator description object given for 'W-MultilayerPerceptron'.
I really cant see what i am doing wrong?
Thanks Laura
0
Answers
does this error occur if you use rapid miner operators?
Greetings,
Sebastian
Thanks for getting back to me. I have fixed the error now thouhg. I was not setting Rapidminer.home correctly.
I was setting:
"file:///C:/Rapid-I/RapidMiner-4.3"
but have changed it :
"C:/Rapid-I/RapidMiner-4.3"
and this works fine now.
Thanks alot
Laura