List of usage examples for org.apache.lucene.classification Classifier interface-usage
From source file SimpleNaiveBayesClassifier.java
/** * A simplistic Lucene based NaiveBayes classifier, see <code>http://en.wikipedia.org/wiki/Naive_Bayes_classifier</code> * * @lucene.experimental */ public class SimpleNaiveBayesClassifier implements Classifier<BytesRef> {
From source file KNearestNeighborClassifier.java
/**
* A k-Nearest Neighbor classifier (see <code>http://en.wikipedia.org/wiki/K-nearest_neighbors</code>) based
* on {@link MoreLikeThis}
*
* @lucene.experimental
*/
From source file com.github.tteofili.looseen.MinHashClassifier.java
/** * a {@link Classifier} based on LSH via queries on in memory sidecar index using {@link MinHashFilter} to index passed * reader's docs. */ public class MinHashClassifier implements Classifier<BytesRef>, Closeable {
From source file com.github.tteofili.looseen.QueryingClassifier.java
/** * a completely query based classifier, each class is identified by a query, score is assigned by either looking at a * query results' max score or no. of hits. */ public class QueryingClassifier implements Classifier<BytesRef> {
From source file Others.SampleLuceneClassifier.java
/** * * @author sounakbanerjee */ public class SampleLuceneClassifier implements Classifier<BytesRef> {