"Bug when updating Weka Models with ModelUpdater"
pser
New Altair Community Member
When updating a model created with a Weka learner, such as W-NaiveBayesMultinomialUpdateable, only every second example is used. This is due to the following lines in the method updateClassifier in WekaClassifier.java (which is indeed a Rapidminer operator, responsible for calling the Weka learners from Rapidminer):
Kind regards,
Daniel
You are incrementing the variable i two times. You should fix that in the next version of Rapidminer.
for (int i = 0; i < instances.numInstances(); i++) {
Instance instance = instances.instance(i++);
classifier.updateClassifier(instance);
}
Kind regards,
Daniel
Tagged:
0
Answers
-
Hi Daniel,
thank you for this hint. I have corrected it and as soon as we merge our local repository with the sf-repository it can be checked out using the anonymous access.
Greetings,
Sebastian0