├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── ablate_xqa.py ├── answer_detection.py ├── cache_dev.py ├── cache_test.py ├── cache_train.py ├── config.py ├── document_qa_eval.py ├── dump_preprocessed_dev.py ├── dump_preprocessed_eval.py ├── dump_preprocessed_train.py ├── evidence_corpus.py ├── get_evaluation_metric_for_bert_result.py ├── optimization.py ├── preprocess_data.py ├── read_data.py ├── run_bert_open_qa_eval.py └── run_bert_open_qa_train.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | data 3 | *.log 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/README.md -------------------------------------------------------------------------------- /ablate_xqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/ablate_xqa.py -------------------------------------------------------------------------------- /answer_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/answer_detection.py -------------------------------------------------------------------------------- /cache_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/cache_dev.py -------------------------------------------------------------------------------- /cache_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/cache_test.py -------------------------------------------------------------------------------- /cache_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/cache_train.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/config.py -------------------------------------------------------------------------------- /document_qa_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/document_qa_eval.py -------------------------------------------------------------------------------- /dump_preprocessed_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/dump_preprocessed_dev.py -------------------------------------------------------------------------------- /dump_preprocessed_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/dump_preprocessed_eval.py -------------------------------------------------------------------------------- /dump_preprocessed_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/dump_preprocessed_train.py -------------------------------------------------------------------------------- /evidence_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/evidence_corpus.py -------------------------------------------------------------------------------- /get_evaluation_metric_for_bert_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/get_evaluation_metric_for_bert_result.py -------------------------------------------------------------------------------- /optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/optimization.py -------------------------------------------------------------------------------- /preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/preprocess_data.py -------------------------------------------------------------------------------- /read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/read_data.py -------------------------------------------------------------------------------- /run_bert_open_qa_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/run_bert_open_qa_eval.py -------------------------------------------------------------------------------- /run_bert_open_qa_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/XQA/HEAD/run_bert_open_qa_train.py --------------------------------------------------------------------------------