public abstract class Axiomatic extends SimilarityBase
There are a family of models. All of them are based on BM25, Pivoted Document Length Normalization and Language model with Dirichlet prior. Some components (e.g. Term Frequency, Inverted Document Frequency) in the original models are modified so that they follow some axiomatic constraints.
Similarity.SimScorer, Similarity.SimWeight
Modifier and Type | Field and Description |
---|---|
protected float |
k
hyperparam for the primitive weighthing function
|
protected int |
queryLen
the query length
|
protected float |
s
hyperparam for the growth function
|
discountOverlaps
Constructor and Description |
---|
Axiomatic()
Default constructor
|
Axiomatic(float s)
Constructor setting only s, letting k and queryLen to default
|
Axiomatic(float s,
int queryLen)
Constructor setting s and queryLen, letting k to default
|
Axiomatic(float s,
int queryLen,
float k)
Constructor setting all Axiomatic hyperparameters
|
Modifier and Type | Method and Description |
---|---|
protected void |
explain(List<Explanation> subs,
BasicStats stats,
int doc,
float freq,
float docLen)
Subclasses should implement this method to explain the score.
|
protected abstract float |
gamma(BasicStats stats,
float freq,
float docLen)
compute the gamma component (only for F3EXp and F3LOG)
|
protected abstract float |
idf(BasicStats stats,
float freq,
float docLen)
compute the inverted document frequency component
|
protected abstract float |
ln(BasicStats stats,
float freq,
float docLen)
compute the document length component
|
float |
score(BasicStats stats,
float freq,
float docLen)
Scores the document
doc . |
protected abstract float |
tf(BasicStats stats,
float freq,
float docLen)
compute the term frequency component
|
protected abstract float |
tfln(BasicStats stats,
float freq,
float docLen)
compute the mixed term frequency and document length component
|
abstract String |
toString()
Name of the axiomatic method.
|
computeNorm, computeWeight, explain, fillBasicStats, getDiscountOverlaps, log2, newStats, setDiscountOverlaps, simScorer
protected final float s
protected final float k
protected final int queryLen
public Axiomatic(float s, int queryLen, float k)
s
- hyperparam for the growth functionqueryLen
- the query lengthk
- hyperparam for the primitive weighting functionpublic Axiomatic(float s)
s
- hyperparam for the growth functionpublic Axiomatic(float s, int queryLen)
s
- hyperparam for the growth functionqueryLen
- the query lengthpublic Axiomatic()
public float score(BasicStats stats, float freq, float docLen)
SimilarityBase
doc
.
Subclasses must apply their scoring formula in this class.
score
in class SimilarityBase
stats
- the corpus level statistics.freq
- the term frequency.docLen
- the document length.protected void explain(List<Explanation> subs, BasicStats stats, int doc, float freq, float docLen)
SimilarityBase
expl
already contains the score, the name of the class and the doc id, as well
as the term frequency and its explanation; subclasses can add additional
clauses to explain details of their scoring formulae.
The default implementation does nothing.
explain
in class SimilarityBase
subs
- the list of details of the explanation to extendstats
- the corpus level statistics.doc
- the document id.freq
- the term frequency.docLen
- the document length.public abstract String toString()
toString
in class SimilarityBase
protected abstract float tf(BasicStats stats, float freq, float docLen)
protected abstract float ln(BasicStats stats, float freq, float docLen)
protected abstract float tfln(BasicStats stats, float freq, float docLen)
protected abstract float idf(BasicStats stats, float freq, float docLen)
protected abstract float gamma(BasicStats stats, float freq, float docLen)
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.