Class KNearestNeighborDocumentClassifier
java.lang.Object
org.apache.lucene.classification.KNearestNeighborClassifier
org.apache.lucene.classification.document.KNearestNeighborDocumentClassifier
- All Implemented Interfaces:
Classifier<org.apache.lucene.util.BytesRef>,DocumentClassifier<org.apache.lucene.util.BytesRef>
public class KNearestNeighborDocumentClassifier
extends KNearestNeighborClassifier
implements DocumentClassifier<org.apache.lucene.util.BytesRef>
A k-Nearest Neighbor Document classifier (see
http://en.wikipedia.org/wiki/K-nearest_neighbors) based on MoreLikeThis .- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
Field Summary
FieldsModifier and TypeFieldDescriptionmap of per field analyzersFields inherited from class org.apache.lucene.classification.KNearestNeighborClassifier
classFieldName, indexSearcher, k, mlt, query, textFieldNames -
Constructor Summary
ConstructorsConstructorDescriptionKNearestNeighborDocumentClassifier(org.apache.lucene.index.IndexReader indexReader, org.apache.lucene.search.similarities.Similarity similarity, org.apache.lucene.search.Query query, int k, int minDocsFreq, int minTermFreq, String classFieldName, Map<String, org.apache.lucene.analysis.Analyzer> field2analyzer, String... textFieldNames) Creates aKNearestNeighborClassifier. -
Method Summary
Modifier and TypeMethodDescriptionClassificationResult<org.apache.lucene.util.BytesRef>assignClass(org.apache.lucene.document.Document document) Assign a class (with score) to the givenDocumentList<ClassificationResult<org.apache.lucene.util.BytesRef>>getClasses(org.apache.lucene.document.Document document) Get all the classes (sorted by score, descending) assigned to the givenDocument.List<ClassificationResult<org.apache.lucene.util.BytesRef>>getClasses(org.apache.lucene.document.Document document, int max) Get the firstmaxclasses (sorted by score, descending) assigned to the given text String.Methods inherited from class org.apache.lucene.classification.KNearestNeighborClassifier
assignClass, buildListFromTopDocs, classifyFromTopDocs, getClasses, getClasses, toString
-
Field Details
-
field2analyzer
map of per field analyzers
-
-
Constructor Details
-
KNearestNeighborDocumentClassifier
public KNearestNeighborDocumentClassifier(org.apache.lucene.index.IndexReader indexReader, org.apache.lucene.search.similarities.Similarity similarity, org.apache.lucene.search.Query query, int k, int minDocsFreq, int minTermFreq, String classFieldName, Map<String, org.apache.lucene.analysis.Analyzer> field2analyzer, String... textFieldNames) throws IOExceptionCreates aKNearestNeighborClassifier.- Parameters:
indexReader- the reader on the index to be used for classificationsimilarity- theSimilarityto be used by the underlyingIndexSearcherornull(defaults toBM25Similarity)query- aQueryto eventually filter the docs used for training the classifier, ornullif all the indexed docs should be usedk- the no. of docs to select in the MLT results to find the nearest neighborminDocsFreq-MoreLikeThis.minDocFreqparameterminTermFreq-MoreLikeThis.minTermFreqparameterclassFieldName- the name of the field used as the output for the classifierfield2analyzer- map with key a field name and the related {org.apache.lucene.analysis.Analyzer}textFieldNames- the name of the fields used as the inputs for the classifier, they can contain boosting indication e.g. title^10- Throws:
IOException
-
-
Method Details
-
assignClass
public ClassificationResult<org.apache.lucene.util.BytesRef> assignClass(org.apache.lucene.document.Document document) throws IOException Description copied from interface:DocumentClassifierAssign a class (with score) to the givenDocument- Specified by:
assignClassin interfaceDocumentClassifier<org.apache.lucene.util.BytesRef>- Parameters:
document- aDocumentto be classified. Fields are considered features for the classification.- Returns:
- a
ClassificationResultholding assigned class of typeTand score - Throws:
IOException- If there is a low-level I/O error.
-
getClasses
public List<ClassificationResult<org.apache.lucene.util.BytesRef>> getClasses(org.apache.lucene.document.Document document) throws IOException Description copied from interface:DocumentClassifierGet all the classes (sorted by score, descending) assigned to the givenDocument.- Specified by:
getClassesin interfaceDocumentClassifier<org.apache.lucene.util.BytesRef>- Parameters:
document- aDocumentto be classified. Fields are considered features for the classification.- Returns:
- the whole list of
ClassificationResult, the classes and scores. Returnsnullif the classifier can't make lists. - Throws:
IOException- If there is a low-level I/O error.
-
getClasses
public List<ClassificationResult<org.apache.lucene.util.BytesRef>> getClasses(org.apache.lucene.document.Document document, int max) throws IOException Description copied from interface:DocumentClassifierGet the firstmaxclasses (sorted by score, descending) assigned to the given text String.- Specified by:
getClassesin interfaceDocumentClassifier<org.apache.lucene.util.BytesRef>- Parameters:
document- aDocumentto be classified. Fields are considered features for the classification.max- 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:
IOException- If there is a low-level I/O error.
-