Documentation ¶
Overview ¶
Functions for finding documents by full text search
Functions for parsing a search query
Index ¶
- Variables
- func Bigrams(terms []string) []string
- func LoadDocInfo(r io.Reader) (map[string]DocInfo, map[string]DocInfo)
- type BM25Score
- type Collection
- type DictQueryParser
- type DocFinder
- type DocInfo
- type Document
- type QueryParser
- type QueryResults
- type TermFreqDocFinder
- type TextSegment
- type TitleFinder
Constants ¶
This section is empty.
Variables ¶
var WEIGHT = []float64{0.080, 2.327, 3.040} // [BM25 words, BM25 bigrams, bit vector]
From logistic regression
Functions ¶
Types ¶
type Collection ¶
type Collection struct {
GlossFile, Title string
}
type DictQueryParser ¶
type DictQueryParser struct {
Tokenizer *tokenizer.DictTokenizer[*dicttypes.Word]
}
func (DictQueryParser) ParseQuery ¶
func (parser DictQueryParser) ParseQuery(query string) []TextSegment
The method for parsing the query text in this function is based on dictionary lookups
type DocFinder ¶ added in v0.0.17
type DocFinder interface { FindDocuments(ctx context.Context, dictSearcher dictionary.ReverseIndex, parser QueryParser, query string, advanced bool) (*QueryResults, error) FindDocumentsInCol(ctx context.Context, dictSearcher dictionary.ReverseIndex, parser QueryParser, query, col_gloss_file string) (*QueryResults, error) }
DocFinder finds documents.
func NewDocFinder ¶ added in v0.0.17
func NewDocFinder(tfDocFinder TermFreqDocFinder, titleFinder TitleFinder) DocFinder
NewDocFinder creates and initializes an implementation of the DocFinder interface
type DocInfo ¶ added in v0.0.60
type DocInfo struct {
CorpusFile, GlossFile, Title, TitleCN, TitleEN, CollectionFile, CollectionTitle string
}
type Document ¶
type QueryParser ¶
type QueryParser interface {
ParseQuery(query string) []TextSegment
}
Parses input queries into a slice of text segments
func NewQueryParser ¶ added in v0.0.101
func NewQueryParser(dict map[string]*dicttypes.Word) QueryParser
Creates a QueryParser
type QueryResults ¶
type QueryResults struct {
Query, CollectionFile string
NumCollections, NumDocuments int
Collections []Collection
Documents []Document
Terms []TextSegment
SimilarTerms []TextSegment
}
type TermFreqDocFinder ¶ added in v0.0.105
type TermFreqDocFinder interface { FindDocsTermFreq(ctx context.Context, terms []string) ([]BM25Score, error) FindDocsBigramFreq(ctx context.Context, bigrams []string) ([]BM25Score, error) FindDocsTermCo(ctx context.Context, terms []string, col string) ([]BM25Score, error) FindDocsBigramCo(ctx context.Context, bigrams []string, col string) ([]BM25Score, error) }
DocFinder finds documents.
func NewMysqlDocFinder ¶ added in v0.0.105
func NewMysqlDocFinder(ctx context.Context, database *sql.DB) TermFreqDocFinder
type TextSegment ¶
A text segment contains the QueryText searched for and possibly a matching dictionary entry. There will only be matching dictionary entries for Chinese words in the dictionary. Non-Chinese text, punctuation, and unknown Chinese words will have nil DictEntry values and matching values will be included in the Senses field.
type TitleFinder ¶ added in v0.0.105
type TitleFinder interface { CountCollections(ctx context.Context, query string) (int, error) FindCollections(ctx context.Context, query string) []Collection FindDocsByTitle(ctx context.Context, query string) ([]Document, error) FindDocsByTitleInCol(ctx context.Context, query, col_gloss_file string) ([]Document, error) ColMap() *map[string]string DocMap() *map[string]DocInfo }
func NewFileTitleFinder ¶ added in v0.0.107
func NewFileTitleFinder(colMap *map[string]string, dInfoCN, docMap *map[string]DocInfo) TitleFinder
NewDocTitleFinder initializes a DocTitleFinder implementation Params
infoCache: key to the map is the Chinese part of the title