├── README.md ├── config.json ├── data └── wiki_small.txt ├── licence.txt ├── requirements.txt ├── setup.py └── tyrion ├── __init__.py ├── backprop_tf.py ├── backprop_th.py ├── compatibility.py ├── probarray.py ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/config.json -------------------------------------------------------------------------------- /data/wiki_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/data/wiki_small.txt -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/licence.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/setup.py -------------------------------------------------------------------------------- /tyrion/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tyrion/backprop_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/tyrion/backprop_tf.py -------------------------------------------------------------------------------- /tyrion/backprop_th.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/tyrion/backprop_th.py -------------------------------------------------------------------------------- /tyrion/compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/tyrion/compatibility.py -------------------------------------------------------------------------------- /tyrion/probarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/tyrion/probarray.py -------------------------------------------------------------------------------- /tyrion/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/tyrion/train.py -------------------------------------------------------------------------------- /tyrion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelDots/WordEmbeddingAutoencoder/HEAD/tyrion/utils.py --------------------------------------------------------------------------------