Discover Packages
github.com/353solutions/nlp
package
module
Version:
v0.0.0-...-5369797
Opens a new window with list of versions in this module.
Published: Feb 11, 2021
License: BSD-3-Clause
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
README
¶
nlp Project
Provide NLP utilities for Go
Contact: miki@353solutions.com
Hacking
Running the Tests
make test
Expand ▾
Collapse ▴
Documentation
¶
Package nlp provides simple natural language processing utilities for Go
...
Tokenize returns list of tokens in text
package main
import (
"fmt"
"github.com/353solutions/nlp"
)
func main() {
text := "Hi, how are you feeling today?"
tokens := nlp.Tokenize(text)
fmt.Println(tokens)
}
Output:
[hi feel today]
Source Files
¶
Directories
¶
cmd
Click to show internal directories.
Click to hide internal directories.