irds/beir_arguana
收藏数据集卡片 for beir/arguana
数据集概述
beir/arguana 数据集由 ir-datasets 包提供。
数据内容
该数据集包含以下内容:
docs(文档,即语料库);数量=8,674queries(即主题);数量=1,406qrels(相关性评估);数量=1,406
使用方法
python from datasets import load_dataset
docs = load_dataset(irds/beir_arguana, docs) for record in docs: record # {doc_id: ..., text: ..., title: ...}
queries = load_dataset(irds/beir_arguana, queries) for record in queries: record # {query_id: ..., text: ...}
qrels = load_dataset(irds/beir_arguana, qrels) for record in qrels: record # {query_id: ..., doc_id: ..., relevance: ..., iteration: ...}
引用信息
@inproceedings{Wachsmuth2018Arguana, author = "Wachsmuth, Henning and Syed, Shahbaz and Stein, Benno", title = "Retrieval of the Best Counterargument without Prior Topic Knowledge", booktitle = "Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)", year = "2018", publisher = "Association for Computational Linguistics", location = "Melbourne, Australia", pages = "241--251", url = "http://aclweb.org/anthology/P18-1023" } @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", }




