Package | Description |
---|---|
org.apache.lucene.search.similarities |
This package contains the various ranking models that can be used in Lucene.
|
Modifier and Type | Class and Description |
---|---|
class |
LambdaDF
Computes lambda as
docFreq+1 / numberOfDocuments+1 . |
class |
LambdaTTF
Computes lambda as
totalTermFreq+1 / numberOfDocuments+1 . |
Modifier and Type | Field and Description |
---|---|
protected Lambda |
IBSimilarity.lambda
The lambda (λw) parameter.
|
Modifier and Type | Method and Description |
---|---|
Lambda |
IBSimilarity.getLambda()
Returns the distribution's lambda parameter
|
Constructor and Description |
---|
IBSimilarity(Distribution distribution,
Lambda lambda,
Normalization normalization)
Creates IBSimilarity from the three components.
|
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.