├── .gitignore ├── BiDAF.png ├── LICENSE ├── README.md ├── checkpoints └── .gitkeep ├── config.py ├── download.sh ├── ema.py ├── evaluate-v1.1.py ├── layers ├── bidaf.py ├── char_embedding.py ├── highway.py └── word_embedding.py ├── logger.py ├── main.py ├── process_data.py └── squad ├── README.md ├── __init__.py ├── prepro.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/.gitignore -------------------------------------------------------------------------------- /BiDAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/BiDAF.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/config.py -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/download.sh -------------------------------------------------------------------------------- /ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/ema.py -------------------------------------------------------------------------------- /evaluate-v1.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/evaluate-v1.1.py -------------------------------------------------------------------------------- /layers/bidaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/layers/bidaf.py -------------------------------------------------------------------------------- /layers/char_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/layers/char_embedding.py -------------------------------------------------------------------------------- /layers/highway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/layers/highway.py -------------------------------------------------------------------------------- /layers/word_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/layers/word_embedding.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/main.py -------------------------------------------------------------------------------- /process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/process_data.py -------------------------------------------------------------------------------- /squad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/squad/README.md -------------------------------------------------------------------------------- /squad/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /squad/prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/squad/prepro.py -------------------------------------------------------------------------------- /squad/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojonki/BiDAF/HEAD/squad/utils.py --------------------------------------------------------------------------------