public class NaiveBayesMultinomialUpdateable extends NaiveBayesMultinomial implements UpdateableClassifier
@inproceedings{Mccallum1998,
author = {Andrew Mccallum and Kamal Nigam},
booktitle = {AAAI-98 Workshop on 'Learning for Text Categorization'},
title = {A Comparison of Event Models for Naive Bayes Text Classification},
year = {1998}
}
Valid options are:
-D If set, classifier is run in debug mode and may output additional info to the console
| Constructor and Description |
|---|
NaiveBayesMultinomialUpdateable() |
| Modifier and Type | Method and Description |
|---|---|
void |
buildClassifier(Instances instances)
Generates the classifier.
|
double[] |
distributionForInstance(Instance instance)
Calculates the class membership probabilities for the given test
instance.
|
String |
getRevision()
Returns the revision string.
|
String |
globalInfo()
Returns a string describing this classifier
|
static void |
main(String[] args)
Main method for testing this class.
|
String |
toString()
Returns a string representation of the classifier.
|
void |
updateClassifier(Instance instance)
Updates the classifier with the given instance.
|
getCapabilities, getTechnicalInformation, lnFactorialclassifyInstance, debugTipText, forName, getDebug, getOptions, listOptions, makeCopies, makeCopy, runClassifier, setDebug, setOptionspublic String globalInfo()
globalInfo in class NaiveBayesMultinomialpublic void buildClassifier(Instances instances) throws Exception
buildClassifier in interface ClassifierbuildClassifier in class NaiveBayesMultinomialinstances - set of instances serving as training dataException - if the classifier has not been generated successfullypublic void updateClassifier(Instance instance) throws Exception
updateClassifier in interface UpdateableClassifierinstance - the new training instance to include in the modelException - if the instance could not be incorporated in
the model.public double[] distributionForInstance(Instance instance) throws Exception
distributionForInstance in interface ClassifierdistributionForInstance in class NaiveBayesMultinomialinstance - the instance to be classifiedException - if there is a problem generating the predictionpublic String toString()
toString in class NaiveBayesMultinomialpublic String getRevision()
getRevision in interface RevisionHandlergetRevision in class NaiveBayesMultinomialpublic static void main(String[] args)
args - the optionsCopyright © 2012 University of Waikato, Hamilton, NZ. All Rights Reserved.