https://github.com/cltk/latin_word2vec_cltk
Latin Word2Vec models
https://github.com/cltk/latin_word2vec_cltk
Last synced: 5 months ago
JSON representation
Latin Word2Vec models
- Host: GitHub
- URL: https://github.com/cltk/latin_word2vec_cltk
- Owner: cltk
- License: mit
- Created: 2015-10-21T06:39:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-23T17:53:06.000Z (over 10 years ago)
- Last Synced: 2025-07-16T13:10:28.179Z (12 months ago)
- Size: 57.5 MB
- Stars: 2
- Watchers: 5
- Forks: 2
- 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_model
filepath = os.path.expanduser('~/latin_word2vec_cltk/latin_s100_w30_min5_sg.model')
make_model('phi5', lemmatize=False, rm_stops=True, size=100, window=30, min_count=5, workers=4, sg=0, save_path=filepath)
filepath = os.path.expanduser('~/latin_word2vec_cltk/latin_s100_w30_min5_sg_lemmed.model')
make_model('phi5', lemmatize=True, rm_stops=True, size=100, window=30, min_count=5, workers=4, sg=0, save_path=filepath)
```