Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cltk/greek_word2vec_cltk
- Owner: cltk
- License: mit
- Created: 2015-10-21T06:44:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-22T01:56:20.000Z (about 9 years ago)
- Last Synced: 2023-08-09T23:13:26.638Z (over 1 year ago)
- Size: 137 KB
- Stars: 3
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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_modelfilepath = 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)
```