├── LICENSE ├── Makefile ├── README.md ├── config.sh ├── densephrases ├── __init__.py ├── demo │ ├── __init__.py │ └── static │ │ ├── examples.txt │ │ ├── examples_context.txt │ │ ├── files │ │ ├── all.js │ │ ├── bootstrap.min.js │ │ ├── favicon.ico │ │ ├── jquery-3.3.1.min.js │ │ ├── overview_new.png │ │ ├── plogo.png │ │ ├── popper.min.js │ │ ├── preview-new.gif │ │ ├── steps.png │ │ └── style.css │ │ ├── index.html │ │ └── index_single.html ├── encoder.py ├── index.py ├── model.py ├── options.py └── utils │ ├── __init__.py │ ├── data_utils.py │ ├── embed_utils.py │ ├── eval_utils.py │ ├── file_utils.py │ ├── kilt │ ├── __init__.py │ ├── eval.py │ └── kilt_utils.py │ ├── open_utils.py │ ├── single_utils.py │ ├── squad_metrics.py │ └── squad_utils.py ├── download.sh ├── eval_phrase_retrieval.py ├── examples ├── README.md ├── create-custom-index │ ├── README.md │ ├── articles.json │ └── questions.json ├── entity-linking │ └── README.md ├── fusion-in-decoder │ └── README.md ├── knowledge-dialogue │ └── README.md └── slot-filling │ └── README.md ├── generate_phrase_vecs.py ├── requirements.txt ├── run_demo.py ├── scripts ├── analysis │ ├── run_analysis.py │ └── run_analysis_dpr.py ├── benchmark │ ├── benchmark_hdf5.py │ ├── create_benchmark_data.py │ └── data │ │ ├── nq_1000_dev_denspi.json │ │ ├── nq_1000_dev_dpr.csv │ │ └── nq_1000_dev_orqa.jsonl ├── dump │ ├── check_dump.py │ ├── filter_hdf5.py │ ├── filter_stats.py │ ├── save_meta.py │ └── split_hdf5.py ├── kilt │ ├── build_title2wikiid.py │ ├── sample_kilt.py │ └── strip_pred.py ├── parallel │ ├── add_to_index.py │ └── dump_phrases.py ├── postprocess │ ├── recall.py │ └── recall_transform.py ├── preprocess │ ├── README.md │ ├── build_db.py │ ├── build_wikisquad.py │ ├── compress_metadata.py │ ├── concat_wikisquad.py │ ├── create_nq_reader.py │ ├── create_nq_reader_doc_wiki.py │ ├── create_nq_reader_wiki.py │ ├── create_openqa.py │ ├── create_psg_hdf5.py │ ├── create_tqa_ds.py │ ├── doc_db.py │ ├── download_wikidump.py │ ├── filter_noans.py │ ├── filter_wiki.py │ ├── merge_openqa.py │ ├── merge_paq.py │ ├── merge_singleqa.py │ ├── nq_utils.py │ ├── prep_wikipedia.py │ ├── sample_nq_reader_doc_wiki.py │ ├── simple_tokenizer.py │ └── stat_entities.py └── question_generation │ ├── filter_qg.py │ └── generate_squad.py ├── setup.py ├── slides └── emnlp2021_slides.pdf ├── train_cross_encoder.py ├── train_query.py └── train_rc.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/README.md -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/config.sh -------------------------------------------------------------------------------- /densephrases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/__init__.py -------------------------------------------------------------------------------- /densephrases/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /densephrases/demo/static/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/examples.txt -------------------------------------------------------------------------------- /densephrases/demo/static/examples_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/examples_context.txt -------------------------------------------------------------------------------- /densephrases/demo/static/files/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/all.js -------------------------------------------------------------------------------- /densephrases/demo/static/files/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/bootstrap.min.js -------------------------------------------------------------------------------- /densephrases/demo/static/files/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/favicon.ico -------------------------------------------------------------------------------- /densephrases/demo/static/files/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /densephrases/demo/static/files/overview_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/overview_new.png -------------------------------------------------------------------------------- /densephrases/demo/static/files/plogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/plogo.png -------------------------------------------------------------------------------- /densephrases/demo/static/files/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/popper.min.js -------------------------------------------------------------------------------- /densephrases/demo/static/files/preview-new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/preview-new.gif -------------------------------------------------------------------------------- /densephrases/demo/static/files/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/steps.png -------------------------------------------------------------------------------- /densephrases/demo/static/files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/files/style.css -------------------------------------------------------------------------------- /densephrases/demo/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/index.html -------------------------------------------------------------------------------- /densephrases/demo/static/index_single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/demo/static/index_single.html -------------------------------------------------------------------------------- /densephrases/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/encoder.py -------------------------------------------------------------------------------- /densephrases/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/index.py -------------------------------------------------------------------------------- /densephrases/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/model.py -------------------------------------------------------------------------------- /densephrases/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/options.py -------------------------------------------------------------------------------- /densephrases/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /densephrases/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/data_utils.py -------------------------------------------------------------------------------- /densephrases/utils/embed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/embed_utils.py -------------------------------------------------------------------------------- /densephrases/utils/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/eval_utils.py -------------------------------------------------------------------------------- /densephrases/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/file_utils.py -------------------------------------------------------------------------------- /densephrases/utils/kilt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /densephrases/utils/kilt/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/kilt/eval.py -------------------------------------------------------------------------------- /densephrases/utils/kilt/kilt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/kilt/kilt_utils.py -------------------------------------------------------------------------------- /densephrases/utils/open_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/open_utils.py -------------------------------------------------------------------------------- /densephrases/utils/single_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/single_utils.py -------------------------------------------------------------------------------- /densephrases/utils/squad_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/squad_metrics.py -------------------------------------------------------------------------------- /densephrases/utils/squad_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/densephrases/utils/squad_utils.py -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/download.sh -------------------------------------------------------------------------------- /eval_phrase_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/eval_phrase_retrieval.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/create-custom-index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/create-custom-index/README.md -------------------------------------------------------------------------------- /examples/create-custom-index/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/create-custom-index/articles.json -------------------------------------------------------------------------------- /examples/create-custom-index/questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/create-custom-index/questions.json -------------------------------------------------------------------------------- /examples/entity-linking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/entity-linking/README.md -------------------------------------------------------------------------------- /examples/fusion-in-decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/fusion-in-decoder/README.md -------------------------------------------------------------------------------- /examples/knowledge-dialogue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/knowledge-dialogue/README.md -------------------------------------------------------------------------------- /examples/slot-filling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/examples/slot-filling/README.md -------------------------------------------------------------------------------- /generate_phrase_vecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/generate_phrase_vecs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/run_demo.py -------------------------------------------------------------------------------- /scripts/analysis/run_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/analysis/run_analysis.py -------------------------------------------------------------------------------- /scripts/analysis/run_analysis_dpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/analysis/run_analysis_dpr.py -------------------------------------------------------------------------------- /scripts/benchmark/benchmark_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/benchmark/benchmark_hdf5.py -------------------------------------------------------------------------------- /scripts/benchmark/create_benchmark_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/benchmark/create_benchmark_data.py -------------------------------------------------------------------------------- /scripts/benchmark/data/nq_1000_dev_denspi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/benchmark/data/nq_1000_dev_denspi.json -------------------------------------------------------------------------------- /scripts/benchmark/data/nq_1000_dev_dpr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/benchmark/data/nq_1000_dev_dpr.csv -------------------------------------------------------------------------------- /scripts/benchmark/data/nq_1000_dev_orqa.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/benchmark/data/nq_1000_dev_orqa.jsonl -------------------------------------------------------------------------------- /scripts/dump/check_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/dump/check_dump.py -------------------------------------------------------------------------------- /scripts/dump/filter_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/dump/filter_hdf5.py -------------------------------------------------------------------------------- /scripts/dump/filter_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/dump/filter_stats.py -------------------------------------------------------------------------------- /scripts/dump/save_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/dump/save_meta.py -------------------------------------------------------------------------------- /scripts/dump/split_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/dump/split_hdf5.py -------------------------------------------------------------------------------- /scripts/kilt/build_title2wikiid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/kilt/build_title2wikiid.py -------------------------------------------------------------------------------- /scripts/kilt/sample_kilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/kilt/sample_kilt.py -------------------------------------------------------------------------------- /scripts/kilt/strip_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/kilt/strip_pred.py -------------------------------------------------------------------------------- /scripts/parallel/add_to_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/parallel/add_to_index.py -------------------------------------------------------------------------------- /scripts/parallel/dump_phrases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/parallel/dump_phrases.py -------------------------------------------------------------------------------- /scripts/postprocess/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/postprocess/recall.py -------------------------------------------------------------------------------- /scripts/postprocess/recall_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/postprocess/recall_transform.py -------------------------------------------------------------------------------- /scripts/preprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/README.md -------------------------------------------------------------------------------- /scripts/preprocess/build_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/build_db.py -------------------------------------------------------------------------------- /scripts/preprocess/build_wikisquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/build_wikisquad.py -------------------------------------------------------------------------------- /scripts/preprocess/compress_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/compress_metadata.py -------------------------------------------------------------------------------- /scripts/preprocess/concat_wikisquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/concat_wikisquad.py -------------------------------------------------------------------------------- /scripts/preprocess/create_nq_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/create_nq_reader.py -------------------------------------------------------------------------------- /scripts/preprocess/create_nq_reader_doc_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/create_nq_reader_doc_wiki.py -------------------------------------------------------------------------------- /scripts/preprocess/create_nq_reader_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/create_nq_reader_wiki.py -------------------------------------------------------------------------------- /scripts/preprocess/create_openqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/create_openqa.py -------------------------------------------------------------------------------- /scripts/preprocess/create_psg_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/create_psg_hdf5.py -------------------------------------------------------------------------------- /scripts/preprocess/create_tqa_ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/create_tqa_ds.py -------------------------------------------------------------------------------- /scripts/preprocess/doc_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/doc_db.py -------------------------------------------------------------------------------- /scripts/preprocess/download_wikidump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/download_wikidump.py -------------------------------------------------------------------------------- /scripts/preprocess/filter_noans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/filter_noans.py -------------------------------------------------------------------------------- /scripts/preprocess/filter_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/filter_wiki.py -------------------------------------------------------------------------------- /scripts/preprocess/merge_openqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/merge_openqa.py -------------------------------------------------------------------------------- /scripts/preprocess/merge_paq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/merge_paq.py -------------------------------------------------------------------------------- /scripts/preprocess/merge_singleqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/merge_singleqa.py -------------------------------------------------------------------------------- /scripts/preprocess/nq_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/nq_utils.py -------------------------------------------------------------------------------- /scripts/preprocess/prep_wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/prep_wikipedia.py -------------------------------------------------------------------------------- /scripts/preprocess/sample_nq_reader_doc_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/sample_nq_reader_doc_wiki.py -------------------------------------------------------------------------------- /scripts/preprocess/simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/simple_tokenizer.py -------------------------------------------------------------------------------- /scripts/preprocess/stat_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/preprocess/stat_entities.py -------------------------------------------------------------------------------- /scripts/question_generation/filter_qg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/question_generation/filter_qg.py -------------------------------------------------------------------------------- /scripts/question_generation/generate_squad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/scripts/question_generation/generate_squad.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/setup.py -------------------------------------------------------------------------------- /slides/emnlp2021_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/slides/emnlp2021_slides.pdf -------------------------------------------------------------------------------- /train_cross_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/train_cross_encoder.py -------------------------------------------------------------------------------- /train_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/train_query.py -------------------------------------------------------------------------------- /train_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princeton-nlp/DensePhrases/HEAD/train_rc.py --------------------------------------------------------------------------------