├── README.md ├── code ├── BM25_searcher │ ├── BM25_build_index.sh │ └── process.py ├── evaluate.py ├── migres.sh ├── pipeline.py └── utils │ ├── __init__.py │ └── search_engine.py └── data ├── aug_context ├── hotpot_aug_context.jsonl ├── musique_aug_context.jsonl ├── strategyQA_aug_context.jsonl └── wikihop_aug_context.jsonl ├── demons ├── CommonsenseQA_demons.json ├── multihopQA_demons.json └── odqa_demons.json ├── hotpot.json ├── id_aliases.json ├── musique.json ├── musique_train_preprocess.json ├── odqa.json ├── strategy.json ├── wikihop.json └── wikihop_train_preprocess.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/README.md -------------------------------------------------------------------------------- /code/BM25_searcher/BM25_build_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/code/BM25_searcher/BM25_build_index.sh -------------------------------------------------------------------------------- /code/BM25_searcher/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/code/BM25_searcher/process.py -------------------------------------------------------------------------------- /code/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/code/evaluate.py -------------------------------------------------------------------------------- /code/migres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/code/migres.sh -------------------------------------------------------------------------------- /code/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/code/pipeline.py -------------------------------------------------------------------------------- /code/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/utils/search_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/code/utils/search_engine.py -------------------------------------------------------------------------------- /data/aug_context/hotpot_aug_context.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/aug_context/hotpot_aug_context.jsonl -------------------------------------------------------------------------------- /data/aug_context/musique_aug_context.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/aug_context/musique_aug_context.jsonl -------------------------------------------------------------------------------- /data/aug_context/strategyQA_aug_context.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/aug_context/strategyQA_aug_context.jsonl -------------------------------------------------------------------------------- /data/aug_context/wikihop_aug_context.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/aug_context/wikihop_aug_context.jsonl -------------------------------------------------------------------------------- /data/demons/CommonsenseQA_demons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/demons/CommonsenseQA_demons.json -------------------------------------------------------------------------------- /data/demons/multihopQA_demons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/demons/multihopQA_demons.json -------------------------------------------------------------------------------- /data/demons/odqa_demons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/demons/odqa_demons.json -------------------------------------------------------------------------------- /data/hotpot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/hotpot.json -------------------------------------------------------------------------------- /data/id_aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/id_aliases.json -------------------------------------------------------------------------------- /data/musique.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/musique.json -------------------------------------------------------------------------------- /data/musique_train_preprocess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/musique_train_preprocess.json -------------------------------------------------------------------------------- /data/odqa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/odqa.json -------------------------------------------------------------------------------- /data/strategy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/strategy.json -------------------------------------------------------------------------------- /data/wikihop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/wikihop.json -------------------------------------------------------------------------------- /data/wikihop_train_preprocess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdelWang/MIGRES/HEAD/data/wikihop_train_preprocess.json --------------------------------------------------------------------------------