mirror of
https://github.com/fumiama/jieba.git
synced 2026-06-07 17:50:26 +08:00
36 lines
454 B
Go
36 lines
454 B
Go
package analyse
|
|
|
|
var StopWords = map[string]int{
|
|
"the": 1,
|
|
"of": 1,
|
|
"is": 1,
|
|
"and": 1,
|
|
"to": 1,
|
|
"in": 1,
|
|
"that": 1,
|
|
"we": 1,
|
|
"for": 1,
|
|
"an": 1,
|
|
"are": 1,
|
|
"by": 1,
|
|
"be": 1,
|
|
"as": 1,
|
|
"on": 1,
|
|
"with": 1,
|
|
"can": 1,
|
|
"if": 1,
|
|
"from": 1,
|
|
"which": 1,
|
|
"you": 1,
|
|
"it": 1,
|
|
"this": 1,
|
|
"then": 1,
|
|
"at": 1,
|
|
"have": 1,
|
|
"all": 1,
|
|
"not": 1,
|
|
"one": 1,
|
|
"has": 1,
|
|
"or": 1,
|
|
}
|