Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,7 @@
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
4 |
-
- zht
|
5 |
- ar
|
6 |
-
- zhs
|
7 |
- es
|
8 |
- fr
|
9 |
- ru
|
@@ -67,6 +65,8 @@ arxiv: 2410.01171
|
|
67 |
|
68 |
# BordIRLines Dataset
|
69 |
|
|
|
|
|
70 |
## Dataset Summary
|
71 |
|
72 |
The **BordIRLines Dataset** is an information retrieval (IR) dataset constructed from various language corpora. It contains queries and corresponding ranked docs along with their relevance scores. The dataset includes multiple languages, including English, Arabic, Spanish, and others, and is split across different sources like LLM-based outputs.
|
@@ -190,4 +190,15 @@ ds_zhs1 = load_dataset("borderlines/bordirlines", "zhs", split="openai.en")
|
|
190 |
ds_zhs2 = load_dataset("borderlines/bordirlines", "zhs", split="openai.qlang")
|
191 |
```
|
192 |
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
|
|
4 |
- ar
|
|
|
5 |
- es
|
6 |
- fr
|
7 |
- ru
|
|
|
65 |
|
66 |
# BordIRLines Dataset
|
67 |
|
68 |
+
This is the dataset associated with the paper "BordIRlines: A Dataset for Evaluating Cross-lingual Retrieval-Augmented Generation" ([link](https://arxiv.org/abs/2410.01171)).
|
69 |
+
|
70 |
## Dataset Summary
|
71 |
|
72 |
The **BordIRLines Dataset** is an information retrieval (IR) dataset constructed from various language corpora. It contains queries and corresponding ranked docs along with their relevance scores. The dataset includes multiple languages, including English, Arabic, Spanish, and others, and is split across different sources like LLM-based outputs.
|
|
|
190 |
ds_zhs2 = load_dataset("borderlines/bordirlines", "zhs", split="openai.qlang")
|
191 |
```
|
192 |
|
193 |
+
## Citation
|
194 |
+
```
|
195 |
+
@misc{li2024bordirlines,
|
196 |
+
title={BordIRlines: A Dataset for Evaluating Cross-lingual Retrieval-Augmented Generation},
|
197 |
+
author={Bryan Li and Samar Haider and Fiona Luo and Adwait Agashe and Chris Callison-Burch},
|
198 |
+
year={2024},
|
199 |
+
eprint={2410.01171},
|
200 |
+
archivePrefix={arXiv},
|
201 |
+
primaryClass={cs.CL},
|
202 |
+
url={https://arxiv.org/abs/2410.01171},
|
203 |
+
}
|
204 |
+
```
|