├── .gitignore ├── LICENSE ├── README.md ├── cbtcn ├── cbtne ├── cnn ├── config.py ├── dailymail ├── data └── .gitignore ├── model ├── GAReader.py ├── __init__.py └── layers.py ├── run.py ├── test.py ├── train.py ├── utils ├── DataPreprocessor.py ├── Helpers.py ├── MiniBatchLoader.py └── __init__.py ├── wdw └── wdw_relaxed /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | experiments/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/README.md -------------------------------------------------------------------------------- /cbtcn: -------------------------------------------------------------------------------- 1 | data/cbt/cn/ -------------------------------------------------------------------------------- /cbtne: -------------------------------------------------------------------------------- 1 | data/cbt/ne/ -------------------------------------------------------------------------------- /cnn: -------------------------------------------------------------------------------- 1 | data/cnn/questions/ -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/config.py -------------------------------------------------------------------------------- /dailymail: -------------------------------------------------------------------------------- 1 | data/dailymail/questions/ -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/data/.gitignore -------------------------------------------------------------------------------- /model/GAReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/model/GAReader.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/model/layers.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/run.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/train.py -------------------------------------------------------------------------------- /utils/DataPreprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/utils/DataPreprocessor.py -------------------------------------------------------------------------------- /utils/Helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/utils/Helpers.py -------------------------------------------------------------------------------- /utils/MiniBatchLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdhingra/ga-reader/HEAD/utils/MiniBatchLoader.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wdw: -------------------------------------------------------------------------------- 1 | data/wdw/ -------------------------------------------------------------------------------- /wdw_relaxed: -------------------------------------------------------------------------------- 1 | data/wdw_relaxed/ --------------------------------------------------------------------------------