├── README.md ├── dataset_reader ├── __init__.py ├── doc_nli_reader.py └── qa_nli_reader.py ├── model ├── __init__.py ├── qa_nli_model.py └── question_equivelance_model.py ├── predictors ├── __init__.py ├── doc_nli_predictor.py ├── mnli_predictor.py └── qa_nli_predictor.py ├── question_generator ├── ds_config.json ├── qg_eval.sh ├── qg_train.sh ├── seq2seq_converter.py └── utils.py ├── requirements.txt └── scripts ├── download_data.sh ├── measure_question_equivelance.py ├── measuring_retrieval_performance.py ├── reconstruct_dataset.py ├── run_nli.py └── run_nli_models.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/README.md -------------------------------------------------------------------------------- /dataset_reader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset_reader/doc_nli_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/dataset_reader/doc_nli_reader.py -------------------------------------------------------------------------------- /dataset_reader/qa_nli_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/dataset_reader/qa_nli_reader.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/qa_nli_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/model/qa_nli_model.py -------------------------------------------------------------------------------- /model/question_equivelance_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/model/question_equivelance_model.py -------------------------------------------------------------------------------- /predictors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /predictors/doc_nli_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/predictors/doc_nli_predictor.py -------------------------------------------------------------------------------- /predictors/mnli_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/predictors/mnli_predictor.py -------------------------------------------------------------------------------- /predictors/qa_nli_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/predictors/qa_nli_predictor.py -------------------------------------------------------------------------------- /question_generator/ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/question_generator/ds_config.json -------------------------------------------------------------------------------- /question_generator/qg_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/question_generator/qg_eval.sh -------------------------------------------------------------------------------- /question_generator/qg_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/question_generator/qg_train.sh -------------------------------------------------------------------------------- /question_generator/seq2seq_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/question_generator/seq2seq_converter.py -------------------------------------------------------------------------------- /question_generator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/question_generator/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/scripts/download_data.sh -------------------------------------------------------------------------------- /scripts/measure_question_equivelance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/scripts/measure_question_equivelance.py -------------------------------------------------------------------------------- /scripts/measuring_retrieval_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/scripts/measuring_retrieval_performance.py -------------------------------------------------------------------------------- /scripts/reconstruct_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/scripts/reconstruct_dataset.py -------------------------------------------------------------------------------- /scripts/run_nli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/scripts/run_nli.py -------------------------------------------------------------------------------- /scripts/run_nli_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jifan-chen/subquestions-for-fact-checking/HEAD/scripts/run_nli_models.sh --------------------------------------------------------------------------------