├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── data └── speeches │ ├── data.npy │ ├── input.txt │ └── vocab.pkl ├── index.js ├── model.py ├── sample.py ├── test1.png ├── test2.png ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | node_modules 3 | save 4 | __pycache__ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/README.md -------------------------------------------------------------------------------- /data/speeches/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/data/speeches/data.npy -------------------------------------------------------------------------------- /data/speeches/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/data/speeches/input.txt -------------------------------------------------------------------------------- /data/speeches/vocab.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/data/speeches/vocab.pkl -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/index.js -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/model.py -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/sample.py -------------------------------------------------------------------------------- /test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/test1.png -------------------------------------------------------------------------------- /test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/test2.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamath/TrickleDownML/HEAD/utils.py --------------------------------------------------------------------------------