Class BasicModelD
- java.lang.Object
-
- org.apache.lucene.search.similarities.BasicModel
-
- org.apache.lucene.search.similarities.BasicModelD
-
public class BasicModelD extends BasicModel
Implements the approximation of the binomial model with the divergence for DFR. The formula used in Lucene differs slightly from the one in the original paper: to avoid underflow for small values ofN
andF
,N
is increased by1
andF
is always increased bytfn+1
.WARNING: for terms that do not meet the expected random distribution (e.g. stopwords), this model may give poor performance, such as abnormally high scores for low tf values.
-
-
Constructor Summary
Constructors Constructor Description BasicModelD()
Sole constructor: parameter-free
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
score(BasicStats stats, float tfn)
Returns the informative content score.java.lang.String
toString()
Subclasses must override this method to return the code of the basic model formula.-
Methods inherited from class org.apache.lucene.search.similarities.BasicModel
explain
-
-
-
-
Method Detail
-
score
public final float score(BasicStats stats, float tfn)
Description copied from class:BasicModel
Returns the informative content score.- Specified by:
score
in classBasicModel
-
toString
public java.lang.String toString()
Description copied from class:BasicModel
Subclasses must override this method to return the code of the basic model formula. Refer to the original paper for the list.- Specified by:
toString
in classBasicModel
-
-