Constructor BM25Similarity
BM25Similarity(Single, Single)
BM25 with the supplied parameter values.
Declaration
public BM25Similarity(float k1, float b)
Parameters
Type | Name | Description |
---|---|---|
System.Single | k1 | Controls non-linear term frequency normalization (saturation). |
System.Single | b | Controls to what degree document length normalizes tf values. |
BM25Similarity()
BM25 with these default values:
k1 = 1.2
,b = 0.75
.
Declaration
public BM25Similarity()