public class BM25 extends WeightingModel
averageDocumentLength, c, cs, documentFrequency, es, i, keyFrequency, numberOfDocuments, numberOfPointers, numberOfTokens, numberOfUniqueTerms, rq, termFrequency| Constructor and Description | 
|---|
| BM25()A default constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getInfo()Returns the name of the model. | 
| double | getParameter()Returns the b parameter to the BM25 ranking formula as set by setParameter() | 
| double | score(double tf,
     double docLength)Uses BM25 to compute a weight for a term in a document. | 
| void | setParameter(double _b)Sets the b parameter to BM25 ranking formula | 
clone, getOverflowed, prepare, score, setCollectionStatistics, setEntryStatistics, setKeyFrequency, setRequestpublic final String getInfo()
getInfo in interface ModelgetInfo in class WeightingModelpublic double score(double tf,
           double docLength)
score in class WeightingModeltf - The term frequency in the documentdocLength - the document's lengthpublic void setParameter(double _b)
setParameter in interface ModelsetParameter in class WeightingModel_b - the b parameter value to use.public double getParameter()
getParameter in interface ModelgetParameter in class WeightingModelTerrier Information Retrieval Platform4.1. Copyright © 2004-2015, University of Glasgow