Package org.apache.lucene.classification
Class BooleanPerceptronClassifier
- java.lang.Object
-
- org.apache.lucene.classification.BooleanPerceptronClassifier
-
- All Implemented Interfaces:
Classifier<java.lang.Boolean>
public class BooleanPerceptronClassifier extends java.lang.Object implements Classifier<java.lang.Boolean>
A perceptron (seehttp://en.wikipedia.org/wiki/Perceptron) basedBooleanClassifier. The weights are calculated usingTermsEnum.totalTermFreq()both on a per field and a per document basis and then a correspondingFSTis used for class assignment.
-
-
Constructor Summary
Constructors Constructor Description BooleanPerceptronClassifier(IndexReader indexReader, Analyzer analyzer, Query query, java.lang.Integer batchSize, java.lang.Double bias, java.lang.String classFieldName, java.lang.String textFieldName)Creates aBooleanPerceptronClassifier
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassificationResult<java.lang.Boolean>assignClass(java.lang.String text)Assign a class (with score) to the given text Stringjava.util.List<ClassificationResult<java.lang.Boolean>>getClasses(java.lang.String text)Get all the classes (sorted by score, descending) assigned to the given text String.java.util.List<ClassificationResult<java.lang.Boolean>>getClasses(java.lang.String text, int max)Get the firstmaxclasses (sorted by score, descending) assigned to the given text String.private voidupdateFST(java.util.SortedMap<java.lang.String,java.lang.Double> weights)private voidupdateWeights(IndexReader indexReader, int docId, java.lang.Boolean assignedClass, java.util.SortedMap<java.lang.String,java.lang.Double> weights, double modifier, boolean updateFST)
-
-
-
Constructor Detail
-
BooleanPerceptronClassifier
public BooleanPerceptronClassifier(IndexReader indexReader, Analyzer analyzer, Query query, java.lang.Integer batchSize, java.lang.Double bias, java.lang.String classFieldName, java.lang.String textFieldName) throws java.io.IOException
Creates aBooleanPerceptronClassifier- Parameters:
indexReader- the reader on the index to be used for classificationanalyzer- anAnalyzerused to analyze unseen textquery- aQueryto eventually filter the docs used for training the classifier, ornullif all the indexed docs should be usedbatchSize- the size of the batch of docs to use for updating the perceptron weightsbias- the bias used for class separationclassFieldName- the name of the field used as the output for the classifiertextFieldName- the name of the field used as input for the classifier- Throws:
java.io.IOException- if the building of the underlyingFSTfails and / orTermsEnumfor the text field cannot be found
-
-
Method Detail
-
updateWeights
private void updateWeights(IndexReader indexReader, int docId, java.lang.Boolean assignedClass, java.util.SortedMap<java.lang.String,java.lang.Double> weights, double modifier, boolean updateFST) throws java.io.IOException
- Throws:
java.io.IOException
-
updateFST
private void updateFST(java.util.SortedMap<java.lang.String,java.lang.Double> weights) throws java.io.IOException- Throws:
java.io.IOException
-
assignClass
public ClassificationResult<java.lang.Boolean> assignClass(java.lang.String text) throws java.io.IOException
Description copied from interface:ClassifierAssign a class (with score) to the given text String- Specified by:
assignClassin interfaceClassifier<java.lang.Boolean>- Parameters:
text- a String containing text to be classified- Returns:
- a
ClassificationResultholding assigned class of typeTand score - Throws:
java.io.IOException- If there is a low-level I/O error.
-
getClasses
public java.util.List<ClassificationResult<java.lang.Boolean>> getClasses(java.lang.String text) throws java.io.IOException
Description copied from interface:ClassifierGet all the classes (sorted by score, descending) assigned to the given text String.- Specified by:
getClassesin interfaceClassifier<java.lang.Boolean>- Parameters:
text- a String containing text to be classified- Returns:
- the whole list of
ClassificationResult, the classes and scores. Returnsnullif the classifier can't make lists. - Throws:
java.io.IOException- If there is a low-level I/O error.
-
getClasses
public java.util.List<ClassificationResult<java.lang.Boolean>> getClasses(java.lang.String text, int max) throws java.io.IOException
Description copied from interface:ClassifierGet the firstmaxclasses (sorted by score, descending) assigned to the given text String.- Specified by:
getClassesin interfaceClassifier<java.lang.Boolean>- Parameters:
text- a String containing text to be classifiedmax- the number of return list elements- Returns:
- the whole list of
ClassificationResult, the classes and scores. Cut for "max" number of elements. Returnsnullif the classifier can't make lists. - Throws:
java.io.IOException- If there is a low-level I/O error.
-
-