irds/beir_webis-touche2020
收藏数据集概述
数据集名称
beir/webis-touche2020
数据集来源
由ir-datasets包提供。
数据集内容
- 文档(corpus): 共382,545个文档。
- 查询(topics): 共49个查询。
- 相关性评估(relevance assessments): 共2,962个相关性评估。
数据集使用示例
python from datasets import load_dataset
加载文档数据
docs = load_dataset(irds/beir_webis-touche2020, docs) for record in docs: record # {doc_id: ..., text: ..., title: ..., stance: ..., url: ...}
加载查询数据
queries = load_dataset(irds/beir_webis-touche2020, queries) for record in queries: record # {query_id: ..., text: ..., description: ..., narrative: ...}
加载相关性评估数据
qrels = load_dataset(irds/beir_webis-touche2020, qrels) for record in qrels: record # {query_id: ..., doc_id: ..., relevance: ..., iteration: ...}
引用信息
@inproceedings{Bondarenko2020Tuche, title={Overview of Touch{e} 2020: Argument Retrieval}, author={Alexander Bondarenko and Maik Fr{"o}be and Meriem Beloucif and Lukas Gienapp and Yamen Ajjour and Alexander Panchenko and Christian Biemann and Benno Stein and Henning Wachsmuth and Martin Potthast and Matthias Hagen}, booktitle={CLEF}, year={2020} } @article{Thakur2021Beir, title = "BEIR: A Heterogenous Benchmark for Zero-shot Evaluation of Information Retrieval Models", author = "Thakur, Nandan and Reimers, Nils and Rücklé, Andreas and Srivastava, Abhishek and Gurevych, Iryna", journal= "arXiv preprint arXiv:2104.08663", month = "4", year = "2021", url = "https://arxiv.org/abs/2104.08663", }




