Class ScoreTerm
An "interesting word" and related top field, score and frequency information.
Inherited Members
Namespace: Lucene.Net.Queries.Mlt
Assembly: Lucene.Net.Queries.dll
Syntax
public class ScoreTerm
Properties
DocFreq
Gets the frequency of this word in the index (int).
Declaration
public int DocFreq { get; }
Property Value
Type | Description |
---|---|
int |
Idf
Gets the inverse document frequency (IDF) value (float).
Declaration
public float Idf { get; }
Property Value
Type | Description |
---|---|
float |
Score
Gets the score for this word (float).
Declaration
public float Score { get; }
Property Value
Type | Description |
---|---|
float |
Tf
Gets the frequency of this word in the source document (int).
Declaration
public int Tf { get; }
Property Value
Type | Description |
---|---|
int |
TopField
Gets the top field that this word comes from.
Declaration
public string TopField { get; }
Property Value
Type | Description |
---|---|
string |
Word
Gets the word.
Declaration
public string Word { get; }
Property Value
Type | Description |
---|---|
string |