资源简介:
---
pretty_name: '`mr-tydi/te/train`'
viewer: false
source_datasets: ['irds/mr-tydi_te']
task_categories:
- text-retrieval
---
# Dataset Card for `mr-tydi/te/train`
The `mr-tydi/te/train` dataset, provided by the [ir-datasets](https://ir-datasets.com/) package.
For more information about the dataset, see the [documentation](https://ir-datasets.com/mr-tydi#mr-tydi/te/train).
# Data
This dataset provides:
- `queries` (i.e., topics); count=3,880
- `qrels`: (relevance assessments); count=3,880
- For `docs`, use [`irds/mr-tydi_te`](https://huggingface.co/datasets/irds/mr-tydi_te)
## Usage
```python
from datasets import load_dataset
queries = load_dataset('irds/mr-tydi_te_train', 'queries')
for record in queries:
record # {'query_id': ..., 'text': ...}
qrels = load_dataset('irds/mr-tydi_te_train', 'qrels')
for record in qrels:
record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
```
Note that calling `load_dataset` will download the dataset (or provide access instructions when it's not public) and make a copy of the
data in 🤗 Dataset format.
## Citation Information
```
@article{Zhang2021MrTyDi,
title={{Mr. TyDi}: A Multi-lingual Benchmark for Dense Retrieval},
author={Xinyu Zhang and Xueguang Ma and Peng Shi and Jimmy Lin},
year={2021},
journal={arXiv:2108.08787},
}
@article{Clark2020TyDiQa,
title={{TyDi QA}: A Benchmark for Information-Seeking Question Answering in Typologically Diverse Languages},
author={Jonathan H. Clark and Eunsol Choi and Michael Collins and Dan Garrette and Tom Kwiatkowski and Vitaly Nikolaev and Jennimaria Palomaki},
year={2020},
journal={Transactions of the Association for Computational Linguistics}
}
```
数据集展示名:`mr-tydi/te/train`
数据查看器:不可用
源数据集:['irds/mr-tydi_te']
任务类别:文本检索
# `mr-tydi/te/train` 数据集卡片
本`mr-tydi/te/train` 数据集由 [ir-datasets](https://ir-datasets.com/) 工具包提供。如需了解该数据集的更多详情,请参阅 [官方文档](https://ir-datasets.com/mr-tydi#mr-tydi/te/train)。
# 数据概况
本数据集包含以下内容:
- `查询集(即主题集)`:共计3880条
- `相关性标注(qrels)`:共计3880条
- 如需获取文档集,请使用 [`irds/mr-tydi_te`](https://huggingface.co/datasets/irds/mr-tydi_te) 数据集。
## 使用示例
python
from datasets import load_dataset
queries = load_dataset('irds/mr-tydi_te_train', 'queries')
for record in queries:
record # {'query_id': ..., 'text': ...}
qrels = load_dataset('irds/mr-tydi_te_train', 'qrels')
for record in qrels:
record # {'query_id': ..., 'doc_id': ..., 'relevance': ..., 'iteration': ...}
请注意,调用`load_dataset`函数将自动下载该数据集(若数据集未公开,则会提供获取指引),并将其转换为🤗 数据集格式进行本地存储。
## 引用信息
@article{Zhang2021MrTyDi,
title={{Mr. TyDi}: A Multi-lingual Benchmark for Dense Retrieval},
author={Xinyu Zhang and Xueguang Ma and Peng Shi and Jimmy Lin},
year={2021},
journal={arXiv:2108.08787},
}
@article{Clark2020TyDiQa,
title={{TyDi QA}: A Benchmark for Information-Seeking Question Answering in Typologically Diverse Languages},
author={Jonathan H. Clark and Eunsol Choi and Michael Collins and Dan Garrette and Tom Kwiatkowski and Vitaly Nikolaev and Jennimaria Palomaki},
year={2020},
journal={Transactions of the Association for Computational Linguistics}
}