Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cltk/greek_word2vec_cltk

Greek Word2Vec models
https://github.com/cltk/greek_word2vec_cltk

Last synced: 6 days ago
JSON representation

Greek Word2Vec models

Awesome Lists containing this project

README

        

These models were made with the following CLTK code (v0.1.28).

``` python
from cltk.vector.word2vec import make_model

filepath = os.path.expanduser('~/greek_word2vec_cltk/greek_s100_w30_min5_sg.model')
make_model('tlg', lemmatize=False, rm_stops=True, size=100, window=30, min_count=5, workers=4, sg=0, save_path=filepath)

filepath = os.path.expanduser('~/greek_word2vec_cltk/greek_s100_w30_min5_sg_lemmed.model')
make_model('tlg', lemmatize=True, rm_stops=True, size=100, window=30, min_count=5, workers=4, sg=0, save_path=filepath)
```