Class SimpleNaiveBayesClassifier
A simplistic Lucene based NaiveBayes classifier, see
http://en.wikipedia.org/wiki/Naive_Bayes_classifier
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Classification
Assembly: Lucene.Net.Classification.dll
Syntax
public class SimpleNaiveBayesClassifier : IClassifier<BytesRef>
Constructors
| Improve this Doc View SourceSimpleNaiveBayesClassifier()
Creates a new NaiveBayes classifier.
Note that you must call Train(Atomic
Declaration
public SimpleNaiveBayesClassifier()
Methods
| Improve this Doc View SourceAssignClass(String)
Assign a class (with score) to the given text string
Declaration
public virtual ClassificationResult<BytesRef> AssignClass(string inputDocument)
Parameters
Type | Name | Description |
---|---|---|
System. |
inputDocument | a string containing text to be classified |
Returns
Type | Description |
---|---|
Classification |
a ClassificationResult<T> holding assigned class of type Bytes |
Train(AtomicReader, String, String, Analyzer)
Train the classifier using the underlying Lucene index
Declaration
public virtual void Train(AtomicReader atomicReader, string textFieldName, string classFieldName, Analyzer analyzer)
Parameters
Type | Name | Description |
---|---|---|
Atomic |
atomicReader | the reader to use to access the Lucene index |
System. |
textFieldName | the name of the field used to compare documents |
System. |
classFieldName | the name of the field containing the class assigned to documents |
Analyzer | analyzer | the analyzer used to tokenize / filter the unseen text |
Train(AtomicReader, String, String, Analyzer, Query)
Train the classifier using the underlying Lucene index
Declaration
public virtual void Train(AtomicReader atomicReader, string textFieldName, string classFieldName, Analyzer analyzer, Query query)
Parameters
Type | Name | Description |
---|---|---|
Atomic |
atomicReader | the reader to use to access the Lucene index |
System. |
textFieldName | the name of the field used to compare documents |
System. |
classFieldName | the name of the field containing the class assigned to documents |
Analyzer | analyzer | the analyzer used to tokenize / filter the unseen text |
Query | query | the query to filter which documents use for training |
Train(AtomicReader, String[], String, Analyzer, Query)
Train the classifier using the underlying Lucene index
Declaration
public virtual void Train(AtomicReader atomicReader, string[] textFieldNames, string classFieldName, Analyzer analyzer, Query query)
Parameters
Type | Name | Description |
---|---|---|
Atomic |
atomicReader | the reader to use to access the Lucene index |
System. |
textFieldNames | the names of the fields to be used to compare documents |
System. |
classFieldName | the name of the field containing the class assigned to documents |
Analyzer | analyzer | the analyzer used to tokenize / filter the unseen text |
Query | query | the query to filter which documents use for training |