├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── download.sh ├── main.py ├── models.py ├── preproc.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/config.py -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/download.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/models.py -------------------------------------------------------------------------------- /preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/preproc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengruo/QANet-pytorch/HEAD/requirements.txt --------------------------------------------------------------------------------