k_2
k_2

Reputation: 13

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?

Upvotes: 0

Views: 285

Answers (1)

Chris Martin
Chris Martin

Reputation: 30736

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

import weka.classifiers.DistributionClassifier;

Upvotes: 1

Related Questions