├── .gitignore ├── README.md ├── alpha-vec-convert.py ├── alphabetizor.py ├── clean.py ├── cleaner.py ├── data ├── char-table.txt ├── charset.txt └── replace.txt ├── eval ├── alpha-word-analogy.txt └── word-analogy.txt └── nlp_lib.py /.gitignore: -------------------------------------------------------------------------------- 1 | xdata/* 2 | __pycache__/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/README.md -------------------------------------------------------------------------------- /alpha-vec-convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/alpha-vec-convert.py -------------------------------------------------------------------------------- /alphabetizor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/alphabetizor.py -------------------------------------------------------------------------------- /clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/clean.py -------------------------------------------------------------------------------- /cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/cleaner.py -------------------------------------------------------------------------------- /data/char-table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/data/char-table.txt -------------------------------------------------------------------------------- /data/charset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/data/charset.txt -------------------------------------------------------------------------------- /data/replace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/data/replace.txt -------------------------------------------------------------------------------- /eval/alpha-word-analogy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/eval/alpha-word-analogy.txt -------------------------------------------------------------------------------- /eval/word-analogy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/eval/word-analogy.txt -------------------------------------------------------------------------------- /nlp_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leobitz/amharic_word_embeddings/HEAD/nlp_lib.py --------------------------------------------------------------------------------