Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kitagry/go-nlp
Golangで自然言語処理を行う
https://github.com/kitagry/go-nlp
Last synced: 15 days ago
JSON representation
Golangで自然言語処理を行う
- Host: GitHub
- URL: https://github.com/kitagry/go-nlp
- Owner: kitagry
- Created: 2019-07-02T07:40:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-20T08:01:51.000Z (over 5 years ago)
- Last Synced: 2024-12-15T14:43:50.353Z (19 days ago)
- Language: Go
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## go-nlp
Golangで自然言語処理を行う。
### 前処理
1. テキストから余計な文字列を削除
1. Stop Words("I", "like", etc)の削除
1. 言語の標準化### Vectorize
* bag of words
* tfidf### ベクトル間距離
* ユークリッド距離
* コサイン距離### USAGE
```
go build
./nlp
```