Temporarely remove filter
This commit is contained in:
parent
83a918a861
commit
8979af263e
1 changed files with 14 additions and 9 deletions
|
@ -364,6 +364,10 @@ var FILTER = []string{
|
||||||
"gente", "chi", "meno", "sempre", "pare", "bene", "devo", "vuoi", "lui", "sul",
|
"gente", "chi", "meno", "sempre", "pare", "bene", "devo", "vuoi", "lui", "sul",
|
||||||
"quella", "po", "vero", "quel", "anni", "tra", "euro", "senza", "cose",
|
"quella", "po", "vero", "quel", "anni", "tra", "euro", "senza", "cose",
|
||||||
"avere", "also", "han", "parte", "tempo", "perche", "ogni", "mia", "detto",
|
"avere", "also", "han", "parte", "tempo", "perche", "ogni", "mia", "detto",
|
||||||
|
"più", "questo", "così", "si", "molto", "casa", "delle", "male", "devi", "dal",
|
||||||
|
"già", "può", "tuo", "qua", "ok", "c'é", "tua", "cui", "sai", "usa", "noi", "lei",
|
||||||
|
"you", "troppo", "forse", "fanno", "dopo", "ciao", "not", "avevo", "anzi", "caso",
|
||||||
|
"fosse", "stato", "siamo", "sulla", "lì", "sarà", "dalla",
|
||||||
}
|
}
|
||||||
|
|
||||||
const USAGE_THRESHOLD = 3
|
const USAGE_THRESHOLD = 3
|
||||||
|
@ -372,16 +376,17 @@ func filteredWords() map[string]UserCount {
|
||||||
filtered := make(map[string]UserCount)
|
filtered := make(map[string]UserCount)
|
||||||
for word, usage := range words {
|
for word, usage := range words {
|
||||||
// Check for too common
|
// Check for too common
|
||||||
isfilter := false
|
/*
|
||||||
for _, filter := range FILTER {
|
isfilter := false
|
||||||
if word == filter {
|
for _, filter := range FILTER {
|
||||||
isfilter = true
|
if word == filter {
|
||||||
break
|
isfilter = true
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
if isfilter {
|
||||||
if isfilter {
|
continue
|
||||||
continue
|
}*/
|
||||||
}
|
|
||||||
|
|
||||||
// Check for not common enough
|
// Check for not common enough
|
||||||
max := uint64(0)
|
max := uint64(0)
|
||||||
|
|
Reference in a new issue