An open API service indexing awesome lists of open source software.

https://github.com/mattn/go-w2v

word2vec library for japanese written in Go.
https://github.com/mattn/go-w2v

go golang neural-network vim word2vec

Last synced: 8 months ago
JSON representation

word2vec library for japanese written in Go.

Awesome Lists containing this project

README

          

# w2v

word2vec library for japanese written in Go.

## Usage

```go
m, err := w2v.LoadText("data.model")
if err != nil {
log.Fatal(err)
}
m.Find("Go").Add("Language").CosineSimilars()
```

## Installation

```
$ go get github.com/mattn/go-w2v
```

## License

MIT

## Author

Yasuhiro Matsumoto (a.k.a. mattn)