Reputation: 13
I have this line of code:
public class Id3 extends DistributionClassifier {
but I am getting the error: cannot find class Distribution Classifier
and I have the Weka package and also added :
import weka.core.*;
Any ideas what the problem might be?
Upvotes: 0
Views: 285
Reputation: 30736
http://www.cs.tufts.edu/~ablumer/weka/doc/weka.classifiers.DistributionClassifier.html
import weka.classifiers.DistributionClassifier;
Upvotes: 1