Class LambdaTTF
- java.lang.Object
-
- org.apache.lucene.search.similarities.Lambda
-
- org.apache.lucene.search.similarities.LambdaTTF
-
public class LambdaTTF extends Lambda
Computes lambda astotalTermFreq+1 / numberOfDocuments+1.
-
-
Constructor Summary
Constructors Constructor Description LambdaTTF()Sole constructor: parameter-free
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Explanationexplain(BasicStats stats)Explains the lambda parameter.floatlambda(BasicStats stats)Computes the lambda parameter.java.lang.StringtoString()Subclasses must override this method to return the code of the lambda formula.
-
-
-
Method Detail
-
lambda
public final float lambda(BasicStats stats)
Description copied from class:LambdaComputes the lambda parameter.
-
explain
public final Explanation explain(BasicStats stats)
Description copied from class:LambdaExplains the lambda parameter.
-
toString
public java.lang.String toString()
Description copied from class:LambdaSubclasses must override this method to return the code of the lambda formula. Since the original paper is not very clear on this matter, and also uses the DFR naming scheme incorrectly, the codes here were chosen arbitrarily.
-
-