mirror of
https://github.com/fumiama/jieba.git
synced 2026-06-07 17:50:26 +08:00
16 lines
152 B
Go
16 lines
152 B
Go
package jiebago
|
|
|
|
type Pair struct {
|
|
Word string
|
|
Flag string
|
|
}
|
|
|
|
type Token struct {
|
|
*Pair
|
|
Freq float64
|
|
}
|
|
|
|
type DictLoader interface {
|
|
Add(*Token)
|
|
}
|