├── DataPreprocess ├── __pycache__ │ └── data_preprocess_squad.cpython-36.pyc ├── data_preprocess_2wiki.py ├── data_preprocess_squad.py ├── prepare_generation_input.py └── prepare_para_selection_data.py ├── ParaSelection ├── __pycache__ │ ├── selection_dataset.cpython-36.pyc │ └── selection_model.cpython-36.pyc ├── selection_dataset.py ├── selection_model.py ├── train_para_selection.py ├── train_para_selection.sh └── wandb │ ├── debug-internal.log │ ├── debug.log │ ├── latest-run │ ├── run-20220821_034905-2sl30szf │ └── logs │ │ └── debug.log │ └── run-20220821_035141-9g636f4q │ ├── files │ ├── conda-environment.yaml │ ├── config.yaml │ ├── output.log │ ├── requirements.txt │ ├── wandb-metadata.json │ └── wandb-summary.json │ ├── logs │ ├── debug-internal.log │ └── debug.log │ └── run-9g636f4q.wandb ├── README.md ├── SimpleQA ├── __pycache__ │ ├── metrics.cpython-36.pyc │ ├── qa_dataset_simple.cpython-36.pyc │ ├── qa_model_simple.cpython-36.pyc │ └── squad_evaluate.cpython-36.pyc ├── metrics.py ├── qa_dataset_simple.py ├── qa_model_simple.py ├── squad_evaluate.py ├── train_qa_simple.py └── train_qa_simple.sh ├── SimpleQG ├── Metrics │ ├── bleu.py │ ├── bleu.py.lock │ ├── meteor.py │ ├── meteor.py.lock │ ├── nmt_bleu.py │ ├── rouge.py │ └── rouge.py.lock ├── run_simpleqg_trainer.sh └── train_simple_qg.py ├── StepQA ├── __pycache__ │ ├── intermediate_suppfact_dataset.cpython-36.pyc │ ├── intermediate_suppfact_model.cpython-36.pyc │ ├── onestep_qa_dataset.cpython-36.pyc │ ├── onestep_qa_model.cpython-36.pyc │ ├── step_qa_dataset.cpython-36.pyc │ └── step_qa_model.cpython-36.pyc ├── intermediate_suppfact_dataset.py ├── intermediate_suppfact_model.py ├── onestep_qa_dataset.py ├── onestep_qa_model.py ├── perform_stepwise_qa.py ├── perform_stepwise_qa.sh ├── predict_intermediate_suppfact.py ├── run_inter_suppfact_prediction.sh ├── run_onestep_qa.sh ├── run_step_qa.sh ├── step_qa_dataset.py ├── step_qa_model.py ├── train_onestep_qa.py └── train_step_qa.py ├── StepQA_2hop ├── __pycache__ │ ├── intermediate_suppfact_dataset.cpython-36.pyc │ ├── intermediate_suppfact_model.cpython-36.pyc │ ├── onestep_qa_dataset.cpython-36.pyc │ ├── onestep_qa_model.cpython-36.pyc │ ├── step_qa_dataset.cpython-36.pyc │ └── step_qa_model.cpython-36.pyc ├── intermediate_suppfact_dataset.py ├── intermediate_suppfact_model.py ├── onestep_qa_dataset.py ├── onestep_qa_model.py ├── perform_stepwise_qa.py ├── perform_stepwise_qa.sh ├── predict_intermediate_suppfact.py ├── run_inter_suppfact_prediction.sh ├── run_onestep_qa.sh ├── run_step_qa.sh ├── step_qa_dataset.py ├── step_qa_model.py ├── train_onestep_qa.py └── train_step_qa.py ├── config.py ├── ds_config.json ├── hotpot_evaluate_v1.py └── utils.py /DataPreprocess/__pycache__/data_preprocess_squad.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/DataPreprocess/__pycache__/data_preprocess_squad.cpython-36.pyc -------------------------------------------------------------------------------- /DataPreprocess/data_preprocess_2wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/DataPreprocess/data_preprocess_2wiki.py -------------------------------------------------------------------------------- /DataPreprocess/data_preprocess_squad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/DataPreprocess/data_preprocess_squad.py -------------------------------------------------------------------------------- /DataPreprocess/prepare_generation_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/DataPreprocess/prepare_generation_input.py -------------------------------------------------------------------------------- /DataPreprocess/prepare_para_selection_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/DataPreprocess/prepare_para_selection_data.py -------------------------------------------------------------------------------- /ParaSelection/__pycache__/selection_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/__pycache__/selection_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /ParaSelection/__pycache__/selection_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/__pycache__/selection_model.cpython-36.pyc -------------------------------------------------------------------------------- /ParaSelection/selection_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/selection_dataset.py -------------------------------------------------------------------------------- /ParaSelection/selection_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/selection_model.py -------------------------------------------------------------------------------- /ParaSelection/train_para_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/train_para_selection.py -------------------------------------------------------------------------------- /ParaSelection/train_para_selection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/train_para_selection.sh -------------------------------------------------------------------------------- /ParaSelection/wandb/debug-internal.log: -------------------------------------------------------------------------------- 1 | run-20220821_035141-9g636f4q/logs/debug-internal.log -------------------------------------------------------------------------------- /ParaSelection/wandb/debug.log: -------------------------------------------------------------------------------- 1 | run-20220821_035141-9g636f4q/logs/debug.log -------------------------------------------------------------------------------- /ParaSelection/wandb/latest-run: -------------------------------------------------------------------------------- 1 | run-20220821_035141-9g636f4q -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_034905-2sl30szf/logs/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_034905-2sl30szf/logs/debug.log -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/files/conda-environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/files/conda-environment.yaml -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/files/config.yaml -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/files/output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/files/output.log -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/files/requirements.txt -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/files/wandb-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/files/wandb-metadata.json -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/files/wandb-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/files/wandb-summary.json -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/logs/debug-internal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/logs/debug-internal.log -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/logs/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/logs/debug.log -------------------------------------------------------------------------------- /ParaSelection/wandb/run-20220821_035141-9g636f4q/run-9g636f4q.wandb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ParaSelection/wandb/run-20220821_035141-9g636f4q/run-9g636f4q.wandb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/README.md -------------------------------------------------------------------------------- /SimpleQA/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /SimpleQA/__pycache__/qa_dataset_simple.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/__pycache__/qa_dataset_simple.cpython-36.pyc -------------------------------------------------------------------------------- /SimpleQA/__pycache__/qa_model_simple.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/__pycache__/qa_model_simple.cpython-36.pyc -------------------------------------------------------------------------------- /SimpleQA/__pycache__/squad_evaluate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/__pycache__/squad_evaluate.cpython-36.pyc -------------------------------------------------------------------------------- /SimpleQA/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/metrics.py -------------------------------------------------------------------------------- /SimpleQA/qa_dataset_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/qa_dataset_simple.py -------------------------------------------------------------------------------- /SimpleQA/qa_model_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/qa_model_simple.py -------------------------------------------------------------------------------- /SimpleQA/squad_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/squad_evaluate.py -------------------------------------------------------------------------------- /SimpleQA/train_qa_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/train_qa_simple.py -------------------------------------------------------------------------------- /SimpleQA/train_qa_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQA/train_qa_simple.sh -------------------------------------------------------------------------------- /SimpleQG/Metrics/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQG/Metrics/bleu.py -------------------------------------------------------------------------------- /SimpleQG/Metrics/bleu.py.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimpleQG/Metrics/meteor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQG/Metrics/meteor.py -------------------------------------------------------------------------------- /SimpleQG/Metrics/meteor.py.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimpleQG/Metrics/nmt_bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQG/Metrics/nmt_bleu.py -------------------------------------------------------------------------------- /SimpleQG/Metrics/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQG/Metrics/rouge.py -------------------------------------------------------------------------------- /SimpleQG/Metrics/rouge.py.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimpleQG/run_simpleqg_trainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQG/run_simpleqg_trainer.sh -------------------------------------------------------------------------------- /SimpleQG/train_simple_qg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/SimpleQG/train_simple_qg.py -------------------------------------------------------------------------------- /StepQA/__pycache__/intermediate_suppfact_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/__pycache__/intermediate_suppfact_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA/__pycache__/intermediate_suppfact_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/__pycache__/intermediate_suppfact_model.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA/__pycache__/onestep_qa_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/__pycache__/onestep_qa_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA/__pycache__/onestep_qa_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/__pycache__/onestep_qa_model.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA/__pycache__/step_qa_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/__pycache__/step_qa_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA/__pycache__/step_qa_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/__pycache__/step_qa_model.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA/intermediate_suppfact_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/intermediate_suppfact_dataset.py -------------------------------------------------------------------------------- /StepQA/intermediate_suppfact_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/intermediate_suppfact_model.py -------------------------------------------------------------------------------- /StepQA/onestep_qa_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/onestep_qa_dataset.py -------------------------------------------------------------------------------- /StepQA/onestep_qa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/onestep_qa_model.py -------------------------------------------------------------------------------- /StepQA/perform_stepwise_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/perform_stepwise_qa.py -------------------------------------------------------------------------------- /StepQA/perform_stepwise_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/perform_stepwise_qa.sh -------------------------------------------------------------------------------- /StepQA/predict_intermediate_suppfact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/predict_intermediate_suppfact.py -------------------------------------------------------------------------------- /StepQA/run_inter_suppfact_prediction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/run_inter_suppfact_prediction.sh -------------------------------------------------------------------------------- /StepQA/run_onestep_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/run_onestep_qa.sh -------------------------------------------------------------------------------- /StepQA/run_step_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/run_step_qa.sh -------------------------------------------------------------------------------- /StepQA/step_qa_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/step_qa_dataset.py -------------------------------------------------------------------------------- /StepQA/step_qa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/step_qa_model.py -------------------------------------------------------------------------------- /StepQA/train_onestep_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/train_onestep_qa.py -------------------------------------------------------------------------------- /StepQA/train_step_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA/train_step_qa.py -------------------------------------------------------------------------------- /StepQA_2hop/__pycache__/intermediate_suppfact_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/__pycache__/intermediate_suppfact_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA_2hop/__pycache__/intermediate_suppfact_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/__pycache__/intermediate_suppfact_model.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA_2hop/__pycache__/onestep_qa_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/__pycache__/onestep_qa_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA_2hop/__pycache__/onestep_qa_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/__pycache__/onestep_qa_model.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA_2hop/__pycache__/step_qa_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/__pycache__/step_qa_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA_2hop/__pycache__/step_qa_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/__pycache__/step_qa_model.cpython-36.pyc -------------------------------------------------------------------------------- /StepQA_2hop/intermediate_suppfact_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/intermediate_suppfact_dataset.py -------------------------------------------------------------------------------- /StepQA_2hop/intermediate_suppfact_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/intermediate_suppfact_model.py -------------------------------------------------------------------------------- /StepQA_2hop/onestep_qa_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/onestep_qa_dataset.py -------------------------------------------------------------------------------- /StepQA_2hop/onestep_qa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/onestep_qa_model.py -------------------------------------------------------------------------------- /StepQA_2hop/perform_stepwise_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/perform_stepwise_qa.py -------------------------------------------------------------------------------- /StepQA_2hop/perform_stepwise_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/perform_stepwise_qa.sh -------------------------------------------------------------------------------- /StepQA_2hop/predict_intermediate_suppfact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/predict_intermediate_suppfact.py -------------------------------------------------------------------------------- /StepQA_2hop/run_inter_suppfact_prediction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/run_inter_suppfact_prediction.sh -------------------------------------------------------------------------------- /StepQA_2hop/run_onestep_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/run_onestep_qa.sh -------------------------------------------------------------------------------- /StepQA_2hop/run_step_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/run_step_qa.sh -------------------------------------------------------------------------------- /StepQA_2hop/step_qa_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/step_qa_dataset.py -------------------------------------------------------------------------------- /StepQA_2hop/step_qa_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/step_qa_model.py -------------------------------------------------------------------------------- /StepQA_2hop/train_onestep_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/train_onestep_qa.py -------------------------------------------------------------------------------- /StepQA_2hop/train_step_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/StepQA_2hop/train_step_qa.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/config.py -------------------------------------------------------------------------------- /ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/ds_config.json -------------------------------------------------------------------------------- /hotpot_evaluate_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/hotpot_evaluate_v1.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiyuanWangw/StepwiseQA/HEAD/utils.py --------------------------------------------------------------------------------