├── .gitignore ├── LICENSE ├── README.md ├── babi_all_shuffles.tar.gz ├── dmn_basic.py ├── dmn_batch.py ├── dmn_qa_draft.py ├── dmn_smooth.py ├── fetch_babi_data.sh ├── fetch_glove_data.sh ├── main.py ├── nn_utils.py ├── requiremnets-api.txt ├── server ├── .gitignore ├── README.md ├── api.py ├── data │ └── networks │ │ └── dmn_smooth │ │ ├── info.json │ │ └── models │ │ ├── disabled │ │ └── smooth17_71.json │ │ └── smooth75.json ├── dmn_helper.py └── utils.py ├── shuffle_babi.py ├── states ├── .gitignore ├── _dmn_smooth.mh5.n100.bs10.babi17.epoch72.test2.35567.state ├── _from.ep1.from.ep5.dmn_smooth.mh5.n100.bs1.babi24.epoch2.test0.60241.state └── dmn_basic.mh5.n40.babi1.epoch4.test0.00033.state └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/README.md -------------------------------------------------------------------------------- /babi_all_shuffles.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/babi_all_shuffles.tar.gz -------------------------------------------------------------------------------- /dmn_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/dmn_basic.py -------------------------------------------------------------------------------- /dmn_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/dmn_batch.py -------------------------------------------------------------------------------- /dmn_qa_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/dmn_qa_draft.py -------------------------------------------------------------------------------- /dmn_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/dmn_smooth.py -------------------------------------------------------------------------------- /fetch_babi_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/fetch_babi_data.sh -------------------------------------------------------------------------------- /fetch_glove_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/fetch_glove_data.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/main.py -------------------------------------------------------------------------------- /nn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/nn_utils.py -------------------------------------------------------------------------------- /requiremnets-api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/requiremnets-api.txt -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- 1 | # Server for DMN 2 | 3 | ## Run 4 | 5 | ```bash 6 | $ python api.py 7 | ``` -------------------------------------------------------------------------------- /server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/api.py -------------------------------------------------------------------------------- /server/data/networks/dmn_smooth/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/data/networks/dmn_smooth/info.json -------------------------------------------------------------------------------- /server/data/networks/dmn_smooth/models/disabled/smooth17_71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/data/networks/dmn_smooth/models/disabled/smooth17_71.json -------------------------------------------------------------------------------- /server/data/networks/dmn_smooth/models/smooth75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/data/networks/dmn_smooth/models/smooth75.json -------------------------------------------------------------------------------- /server/dmn_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/dmn_helper.py -------------------------------------------------------------------------------- /server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/server/utils.py -------------------------------------------------------------------------------- /shuffle_babi.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /states/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/states/.gitignore -------------------------------------------------------------------------------- /states/_dmn_smooth.mh5.n100.bs10.babi17.epoch72.test2.35567.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/states/_dmn_smooth.mh5.n100.bs10.babi17.epoch72.test2.35567.state -------------------------------------------------------------------------------- /states/_from.ep1.from.ep5.dmn_smooth.mh5.n100.bs1.babi24.epoch2.test0.60241.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/states/_from.ep1.from.ep5.dmn_smooth.mh5.n100.bs1.babi24.epoch2.test0.60241.state -------------------------------------------------------------------------------- /states/dmn_basic.mh5.n40.babi1.epoch4.test0.00033.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/states/dmn_basic.mh5.n40.babi1.epoch4.test0.00033.state -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerevaNN/Dynamic-memory-networks-in-Theano/HEAD/utils.py --------------------------------------------------------------------------------