Class KNearestNeighborClassifier

java.lang.Object
org.apache.lucene.classification.KNearestNeighborClassifier
All Implemented Interfaces:
Classifier<BytesRef>
Direct Known Subclasses:
KNearestNeighborDocumentClassifier

public class KNearestNeighborClassifier extends Object implements Classifier<BytesRef>
A k-Nearest Neighbor 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 Details

    • mlt

      protected final MoreLikeThis mlt
      a MoreLikeThis instance used to perform MLT queries
    • textFieldNames

      protected final String[] textFieldNames
      the name of the fields used as the input text
    • classFieldName

      protected final String classFieldName
      the name of the field used as the output text
    • indexSearcher

      protected final IndexSearcher indexSearcher
      an IndexSearcher used to perform queries
    • k

      protected final int k
      the no. of docs to compare in order to find the nearest neighbor to the input text
    • query

      protected final Query query
      a Query used to filter the documents that should be used from this classifier's underlying LeafReader
  • Constructor Details

    • KNearestNeighborClassifier

      public KNearestNeighborClassifier(IndexReader indexReader, Similarity similarity, Analyzer analyzer, Query query, int k, int minDocsFreq, int minTermFreq, String classFieldName, String... textFieldNames) throws IOException
      Parameters:
      indexReader - the reader on the index to be used for classification
      similarity - the Similarity to be used by the underlying IndexSearcher or null (defaults to BM25Similarity)
      analyzer - an Analyzer used to analyze unseen text
      query - a Query to eventually filter the docs used for training the classifier, or null if all the indexed docs should be used
      k - the no. of docs to select in the MLT results to find the nearest neighbor
      minDocsFreq - MoreLikeThis.minDocFreq parameter
      minTermFreq - MoreLikeThis.minTermFreq parameter
      classFieldName - the name of the field used as the output for the classifier
      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