๐ shamoji - Awesome Go Library for Natural Language Processing
The shamoji is word filtering package written in Go.
๐ท๏ธ Natural Language Processing
๐ Libraries for working with human languages.
โญ 13 stars
Detailed Description of shamoji
shamoji
About
The shamoji (ๆๆๅญ) is word filtering package.
Install
$ go get github.com/osamingo/shamoji@latest
Usage
package main
import (
"fmt"
"sync"
"github.com/osamingo/shamoji"
"github.com/osamingo/shamoji/filter"
"github.com/osamingo/shamoji/tokenizer"
"golang.org/x/text/unicode/norm"
)
var (
o sync.Once
s *shamoji.Serve
)
func main() {
yes, word := Contains("ๆใ็ๆถฏใซไธ็ใฎๆใ็กใ")
fmt.Printf("Result: %v, Word: %s", yes, word)
}
func Contains(sentence string) (bool, string) {
o.Do(func() {
tok, err := tokenizer.NewKagomeTokenizer(norm.NFKC)
if err != nil {
panic(err)
}
s = &shamoji.Serve{
Tokenizer: tok,
Filer: filter.NewCuckooFilter("ๆถฏใซ", "ๆใ"),
}
})
return s.Do(sentence)
}
License
Released under the MIT License.