├── .gitmodules ├── LICENSE ├── README.md ├── alignment_matrices ├── conll17word2vec │ ├── automated │ │ ├── de.txt │ │ ├── en.txt │ │ ├── es.txt │ │ └── tr.txt │ └── expert │ │ ├── de.txt │ │ ├── en.txt │ │ ├── es.txt │ │ └── tr.txt ├── fasttext157 │ ├── automated │ │ ├── de.txt │ │ ├── en.txt │ │ ├── es.txt │ │ └── tr.txt │ └── expert │ │ ├── de.txt │ │ ├── en.txt │ │ ├── es.txt │ │ └── tr.txt └── fasttextwiki │ ├── automated │ ├── de.txt │ ├── en.txt │ ├── es.txt │ └── tr.txt │ └── expert │ ├── de.txt │ ├── en.txt │ ├── es.txt │ └── tr.txt ├── core.py ├── dataset.py ├── embedding.py ├── helpers.py ├── kadjk.py ├── lee_dernoncourt.py ├── train_set_preferences.py ├── train_translation_matrices.py └── translate.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/README.md -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/automated/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/automated/de.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/automated/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/automated/en.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/automated/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/automated/es.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/automated/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/automated/tr.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/expert/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/expert/de.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/expert/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/expert/en.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/expert/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/expert/es.txt -------------------------------------------------------------------------------- /alignment_matrices/conll17word2vec/expert/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/conll17word2vec/expert/tr.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/automated/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/automated/de.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/automated/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/automated/en.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/automated/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/automated/es.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/automated/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/automated/tr.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/expert/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/expert/de.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/expert/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/expert/en.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/expert/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/expert/es.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttext157/expert/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttext157/expert/tr.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/automated/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/automated/de.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/automated/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/automated/en.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/automated/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/automated/es.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/automated/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/automated/tr.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/expert/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/expert/de.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/expert/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/expert/en.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/expert/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/expert/es.txt -------------------------------------------------------------------------------- /alignment_matrices/fasttextwiki/expert/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/alignment_matrices/fasttextwiki/expert/tr.txt -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/core.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/dataset.py -------------------------------------------------------------------------------- /embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/embedding.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/helpers.py -------------------------------------------------------------------------------- /kadjk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/kadjk.py -------------------------------------------------------------------------------- /lee_dernoncourt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/lee_dernoncourt.py -------------------------------------------------------------------------------- /train_set_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/train_set_preferences.py -------------------------------------------------------------------------------- /train_translation_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/train_translation_matrices.py -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilimugur/short-text-classification/HEAD/translate.py --------------------------------------------------------------------------------