Backend: Add new stopword

This commit is contained in:
Theresa Gresch 2020-08-12 19:14:01 +02:00
parent 5e3a090065
commit 68d490c975
3 changed files with 3 additions and 0 deletions

View file

@ -28,6 +28,7 @@ var UnwantedDescriptions = map[string]bool{
"rpt": true, "rpt": true,
"burst": true, "burst": true,
"sdr_HDRB": true, "sdr_HDRB": true,
"cof": true,
} }
var LowerCaseRegexp = regexp.MustCompile("[a-z0-9_\\-]+") var LowerCaseRegexp = regexp.MustCompile("[a-z0-9_\\-]+")

View file

@ -2357,6 +2357,7 @@ cierto
ciertos ciertos
cinco cinco
claro claro
cof
comentó comentó
como como
conmigo conmigo

View file

@ -2362,6 +2362,7 @@ var StopWords = map[string]bool{
"ciertos": true, "ciertos": true,
"cinco": true, "cinco": true,
"claro": true, "claro": true,
"cof": true,
"comentó": true, "comentó": true,
"como": true, "como": true,
"conmigo": true, "conmigo": true,