public class NormalizationH2 extends Normalization
While this model is parameterless in the
original article, the thesis
introduces the parameterized variant.
The default value for the c
parameter is 1
.
Normalization.NoNormalization
Constructor and Description |
---|
NormalizationH2()
Calls
NormalizationH2(1) |
NormalizationH2(float c)
Creates NormalizationH2 with the supplied parameter
c . |
Modifier and Type | Method and Description |
---|---|
Explanation |
explain(BasicStats stats,
double tf,
double len)
Returns an explanation for the normalized term frequency.
|
float |
getC()
Returns the
c parameter. |
double |
tfn(BasicStats stats,
double tf,
double len)
Returns the normalized term frequency.
|
String |
toString()
Subclasses must override this method to return the code of the
normalization formula.
|
public NormalizationH2(float c)
c
.c
- hyper-parameter that controls the term frequency
normalization with respect to the document length.public NormalizationH2()
NormalizationH2(1)
public final double tfn(BasicStats stats, double tf, double len)
Normalization
tfn
in class Normalization
len
- the field length.public Explanation explain(BasicStats stats, double tf, double len)
Normalization
The default normalization methods use the field length of the document and the average field length to compute the normalized term frequency. This method provides a generic explanation for such methods. Subclasses that use other statistics must override this method.
explain
in class Normalization
public String toString()
Normalization
toString
in class Normalization
public float getC()
c
parameter.NormalizationH2(float)
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.