├── .gitignore ├── LICENSE ├── README.md ├── cnn_text_trainer ├── __init__.py ├── config │ ├── __init__.py │ └── config.py ├── core │ ├── __init__.py │ ├── multichannel │ │ ├── __init__.py │ │ └── model.py │ ├── nn_classes.py │ └── unichannel │ │ ├── __init__.py │ │ └── model.py └── rw │ ├── __init__.py │ ├── datasets.py │ └── wordvecs.py ├── downloadWordVecs.sh ├── gpu_to_cpu.py ├── make └── gdown.pl ├── requirements.txt ├── sample ├── configs │ ├── mc │ │ ├── config-mc1.json │ │ ├── config-mc2.json │ │ ├── config-mc3.json │ │ ├── config-mc4.json │ │ └── config-mc5.json │ ├── nonstatic │ │ ├── config-nonstatic1.json │ │ ├── config-nonstatic2.json │ │ ├── config-nonstatic3.json │ │ ├── config-nonstatic4.json │ │ └── config-nonstatic5.json │ ├── sampleMCConfig.json │ ├── sampleNonStaticConfig.json │ ├── sampleStaticConfig.json │ └── static │ │ ├── config-static1.json │ │ ├── config-static2.json │ │ ├── config-static3.json │ │ ├── config-static4.json │ │ └── config-static5.json └── datasets │ └── sst_small_sample.csv ├── server.py ├── test.py ├── test ├── __init__.py ├── testConfig.json └── test_cnn_text_trainer.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/README.md -------------------------------------------------------------------------------- /cnn_text_trainer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cnn_text_trainer/config/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'devashish.shankar' 2 | -------------------------------------------------------------------------------- /cnn_text_trainer/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/cnn_text_trainer/config/config.py -------------------------------------------------------------------------------- /cnn_text_trainer/core/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'devashish.shankar' 2 | -------------------------------------------------------------------------------- /cnn_text_trainer/core/multichannel/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'devashish.shankar' 2 | -------------------------------------------------------------------------------- /cnn_text_trainer/core/multichannel/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/cnn_text_trainer/core/multichannel/model.py -------------------------------------------------------------------------------- /cnn_text_trainer/core/nn_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/cnn_text_trainer/core/nn_classes.py -------------------------------------------------------------------------------- /cnn_text_trainer/core/unichannel/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'devashish.shankar' 2 | -------------------------------------------------------------------------------- /cnn_text_trainer/core/unichannel/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/cnn_text_trainer/core/unichannel/model.py -------------------------------------------------------------------------------- /cnn_text_trainer/rw/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'devashish.shankar' 2 | -------------------------------------------------------------------------------- /cnn_text_trainer/rw/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/cnn_text_trainer/rw/datasets.py -------------------------------------------------------------------------------- /cnn_text_trainer/rw/wordvecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/cnn_text_trainer/rw/wordvecs.py -------------------------------------------------------------------------------- /downloadWordVecs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/downloadWordVecs.sh -------------------------------------------------------------------------------- /gpu_to_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/gpu_to_cpu.py -------------------------------------------------------------------------------- /make/gdown.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/make/gdown.pl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample/configs/mc/config-mc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/mc/config-mc1.json -------------------------------------------------------------------------------- /sample/configs/mc/config-mc2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/mc/config-mc2.json -------------------------------------------------------------------------------- /sample/configs/mc/config-mc3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/mc/config-mc3.json -------------------------------------------------------------------------------- /sample/configs/mc/config-mc4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/mc/config-mc4.json -------------------------------------------------------------------------------- /sample/configs/mc/config-mc5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/mc/config-mc5.json -------------------------------------------------------------------------------- /sample/configs/nonstatic/config-nonstatic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/nonstatic/config-nonstatic1.json -------------------------------------------------------------------------------- /sample/configs/nonstatic/config-nonstatic2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/nonstatic/config-nonstatic2.json -------------------------------------------------------------------------------- /sample/configs/nonstatic/config-nonstatic3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/nonstatic/config-nonstatic3.json -------------------------------------------------------------------------------- /sample/configs/nonstatic/config-nonstatic4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/nonstatic/config-nonstatic4.json -------------------------------------------------------------------------------- /sample/configs/nonstatic/config-nonstatic5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/nonstatic/config-nonstatic5.json -------------------------------------------------------------------------------- /sample/configs/sampleMCConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/sampleMCConfig.json -------------------------------------------------------------------------------- /sample/configs/sampleNonStaticConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/sampleNonStaticConfig.json -------------------------------------------------------------------------------- /sample/configs/sampleStaticConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/sampleStaticConfig.json -------------------------------------------------------------------------------- /sample/configs/static/config-static1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/static/config-static1.json -------------------------------------------------------------------------------- /sample/configs/static/config-static2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/static/config-static2.json -------------------------------------------------------------------------------- /sample/configs/static/config-static3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/static/config-static3.json -------------------------------------------------------------------------------- /sample/configs/static/config-static4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/static/config-static4.json -------------------------------------------------------------------------------- /sample/configs/static/config-static5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/configs/static/config-static5.json -------------------------------------------------------------------------------- /sample/datasets/sst_small_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/sample/datasets/sst_small_sample.csv -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/server.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/test.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'devashish.shankar' 2 | -------------------------------------------------------------------------------- /test/testConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/test/testConfig.json -------------------------------------------------------------------------------- /test/test_cnn_text_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/test/test_cnn_text_trainer.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipkart-incubator/optimus/HEAD/train.py --------------------------------------------------------------------------------