Search code examples
javaclassificationweka

Weka packages and extends


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?


Solution

  • http://www.cs.tufts.edu/~ablumer/weka/doc/weka.classifiers.DistributionClassifier.html

    import weka.classifiers.DistributionClassifier;