C# 클래스 Lucene.Net.Search.Spell.HighFrequencyDictionary

HighFrequencyDictionary: terms taken from the given field of a Lucene index, which appear in a number of documents above a given threshold. Threshold is a value in [0..1] representing the minimum number of documents (of the total) where a term should appear. Based on LuceneDictionary.
상속: Dictionary
파일 보기 프로젝트 열기: apache/lucenenet 1 사용 예제들

공개 메소드들

메소드 설명
HighFrequencyDictionary ( IndexReader reader, string field, float thresh ) : Lucene.Net.Index

Creates a new Dictionary, pulling source terms from the specified field in the provided reader.

Terms appearing in less than thresh percentage of documents will be excluded.

메소드 상세

HighFrequencyDictionary() 공개 메소드

Creates a new Dictionary, pulling source terms from the specified field in the provided reader.

Terms appearing in less than thresh percentage of documents will be excluded.

public HighFrequencyDictionary ( IndexReader reader, string field, float thresh ) : Lucene.Net.Index
reader Lucene.Net.Index.IndexReader
field string
thresh float
리턴 Lucene.Net.Index