Example usage for org.apache.lucene.search.similarities Similarity subclass-usage

List of usage examples for org.apache.lucene.search.similarities Similarity subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.search.similarities Similarity subclass-usage.

Usage

From source file BM25LSimilarity.java

/**
 * BM25 Similarity. Introduced in Stephen E. Robertson, Steve Walker, Susan
 * Jones, Micheline Hancock-Beaulieu, and Mike Gatford. Okapi at TREC-3. In
 * Proceedings of the Third <b>T</b>ext <b>RE</b>trieval <b>C</b>onference (TREC
 * 1994). Gaithersburg, USA, November 1994.
 *

From source file com.o19s.bm25f.BM25FSimilarity.java

/**
 * BM25 Similarity. Introduced in Stephen E. Robertson, Steve Walker,
 * Susan Jones, Micheline Hancock-Beaulieu, and Mike Gatford. Okapi at TREC-3.
 * In Proceedings of the Third <b>T</b>ext <b>RE</b>trieval <b>C</b>onference (TREC 1994).
 * Gaithersburg, USA, November 1994.
 */

From source file elhuyar.bilakit.SimilarityCLIRFactory.java

class SimilarityCLIR extends Similarity {
    /** Cache of decoded bytes. */
    private static final float[] NORM_TABLE = new float[256];

    static {
        for (int i = 0; i < 256; i++) {

From source file eu.europeana.ranking.bm25f.similarity.BM25FSimilarity.java

/**
 * BM25FSimililarity implements the BM25F similarity function.
 * 
 * @author Diego Ceccarelli <diego.ceccarelli@isti.cnr.it>
 * 
 *         Created on Nov 15, 2012

From source file Example.lucene.PageRankSimilarity.java

/**
 *
 * @author malang
 */
public class PageRankSimilarity extends Similarity {

From source file io.anserini.search.similarity.F2LogSimilarity.java

/**
 * Hui Fang and ChengXiang Zhai. 2005. An exploration of axiomatic approaches to information retrieval.
 * In Proceedings of the 28th annual international ACM SIGIR conference on Research and development in
 * information retrieval (SIGIR '05). ACM, New York, NY, USA, 480-487.
 */
public class F2LogSimilarity extends Similarity {

From source file lucene4ir.similarity.BM25FSimilarity.java

/**
 * BM25 Similarity. Introduced in Stephen E. Robertson, Steve Walker,
 * Susan Jones, Micheline Hancock-Beaulieu, and Mike Gatford. Okapi at TREC-3.
 * In Proceedings of the Third <b>T</b>ext <b>RE</b>trieval <b>C</b>onference (TREC 1994).
 * Gaithersburg, USA, November 1994.
 */

From source file lucene4ir.similarity.BM25Similarity.java

/**
 * BM25 Similarity. Introduced in Stephen E. Robertson, Steve Walker,
 * Susan Jones, Micheline Hancock-Beaulieu, and Mike Gatford. Okapi at TREC-3.
 * In Proceedings of the Third <b>T</b>ext <b>RE</b>trieval <b>C</b>onference (TREC 1994).
 * Gaithersburg, USA, November 1994.
 */

From source file main.BM25SimilarityOriginal.java

/**
 * BM25 Similarity. Introduced in Stephen E. Robertson, Steve Walker,
 * Susan Jones, Micheline Hancock-Beaulieu, and Mike Gatford. Okapi at TREC-3.
 * In Proceedings of the Third <b>T</b>ext <b>RE</b>trieval <b>C</b>onference (TREC 1994).
 * Gaithersburg, USA, November 1994.
 */

From source file main.BM25VASimilarity.java

/**
 * BM25 Similarity. Introduced in Stephen E. Robertson, Steve Walker,
 * Susan Jones, Micheline Hancock-Beaulieu, and Mike Gatford. Okapi at TREC-3.
 * In Proceedings of the Third <b>T</b>ext <b>RE</b>trieval <b>C</b>onference (TREC 1994).
 * Gaithersburg, USA, November 1994.
 */