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
"Instantiate Weka learner (Was: Re: Using WEKA learner)"
evildesgar
Member Posts: 1 Learner III
Hi
I am using RapidMiner5 and integrating it to a java application
When i try to create an operator of W-Apriori i can´t find the com.rapidminer.operator.learner.weka library.
This is my java code
Operator AprioriOperator = OperatorService.createOperator(com.rapidminer.operator.learner.);
but in this point i can´t find the weka reference library..
Do you know where i can find it ?. . or what i have to do to define a W-Apriori operator ??
Thanks
Edgar
I am using RapidMiner5 and integrating it to a java application
When i try to create an operator of W-Apriori i can´t find the com.rapidminer.operator.learner.weka library.
This is my java code
Operator AprioriOperator = OperatorService.createOperator(com.rapidminer.operator.learner.);
but in this point i can´t find the weka reference library..
Do you know where i can find it ?. . or what i have to do to define a W-Apriori operator ??
Thanks
Edgar
Tagged:
0
Answers
there are no RapidMiner classes for the Weka classes. We use a factory pattern for that. Rather than passing the class names to OperatorService.createOperator, pass it a String. The value of the string must be the key of the operator. To find the key for a Weka operator, create a process and look into the XML for the particular operator.
Best,
Simon