irds/neumarco_ru_dev_small
收藏Hugging Face2023-01-05 更新2024-03-04 收录
下载链接:
https://hf-mirror.com/datasets/irds/neumarco_ru_dev_small
下载链接
链接失效反馈官方服务:
资源简介:
`neumarco/ru/dev/small`数据集由`ir-datasets`包提供。该数据集包含`queries`(即主题)和`qrels`(相关性评估),其中`queries`的数量为6,980,`qrels`的数量为7,437。对于`docs`部分,需要使用`irds/neumarco_ru`数据集。用户可以通过Python代码加载该数据集,调用`load_dataset`时会下载数据集或提供访问说明。
The `neumarco/ru/dev/small` dataset is provided by the `ir-datasets` package. This dataset contains `queries` (i.e., topics) and `qrels` (i.e., relevance assessments), with 6,980 `queries` and 7,437 `qrels` entries. For the `docs` subset, the `irds/neumarco_ru` dataset should be used. Users can load this dataset via Python code: calling the `load_dataset` function will either download the dataset or provide access instructions.
提供机构:
irds
原始信息汇总
数据集概述
数据集名称
neumarco/ru/dev/small
数据来源
- 源数据集:
irds/neumarco_ru
数据集内容
queries(查询):数量为6,980qrels(相关性评估):数量为7,437docs(文档):使用数据集irds/neumarco_ru
数据集用途
- 用于文本检索任务
数据集加载示例
python from datasets import load_dataset
加载查询数据
queries = load_dataset(irds/neumarco_ru_dev_small, queries) for record in queries: record # {query_id: ..., text: ...}
加载相关性评估数据
qrels = load_dataset(irds/neumarco_ru_dev_small, qrels) for record in qrels: record # {query_id: ..., doc_id: ..., relevance: ..., iteration: ...}



