Uses of Class
cc.mallet.classify.NaiveBayes

Packages that use NaiveBayes
cc.mallet.classify Classes for training and classifying instances. 
 

Uses of NaiveBayes in cc.mallet.classify
 

Methods in cc.mallet.classify that return NaiveBayes
 NaiveBayes NaiveBayesTrainer.getClassifier()
           
 NaiveBayes NaiveBayesEMTrainer.getClassifier()
           
 NaiveBayes NaiveBayesTrainer.train(InstanceList trainingList)
          Create a NaiveBayes classifier from a set of training data.
 NaiveBayes NaiveBayesEMTrainer.train(InstanceList trainingSet)
           
 NaiveBayes NaiveBayesTrainer.trainIncremental(Instance instance)
           
 NaiveBayes NaiveBayesTrainer.trainIncremental(InstanceList trainingInstancesToAdd)
           
 

Constructors in cc.mallet.classify with parameters of type NaiveBayes
NaiveBayesTrainer(NaiveBayes initialClassifier)