Datasets:

License:
File size: 1,850 Bytes
3de0cda
 
c6bc2b6
 
 
 
 
 
 
 
 
 
 
 
 
 
3de0cda
c6bc2b6
 
 
 
a28001c
d913299
c6bc2b6
 
d913299
0b5bb0c
c6bc2b6
d913299
 
 
 
c6bc2b6
d913299
 
 
0b5bb0c
 
 
b3c51aa
0b5bb0c
0773459
e67e171
 
 
 
 
fc0e263
 
 
 
e67e171
 
 
0b5bb0c
 
 
c6bc2b6
0b5bb0c
c6bc2b6
 
f0fe0eb
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
license: apache-2.0

language:
- ha
- so
- sw
- yo

task_categories:
- text-retrieval

mutilinguality:
- multilingual

viewer: true
---


# Dataset Summary

CIRAL is a collection for cross-lingual information retrieval research across four (4) African languages. The collection comprises English queries and query-passage relevance judgements for passages in the African languages.
This dataset repo contains only the queries and relevance judgements. The corpus collection can be found here [here](https://huggingface.co/datasets/CIRAL/ciral-corpus)


# Dataset Structure
1. To download the files: The queries can be found under `ciral-{lang}/topics` and are in `.tsv` formats with each line in the form:

   ```
    qid\tquery
   ```
   while the judgements are in the folder `ciral-{lang}/qrels`, with each file in the standard TREC format:

   ```
    qid Q0 docid relevance
   ```
2. To access the dataset via `datasets`:
   
   ```
   ciral_dataset = load_dataset("ciral/ciral", "hausa") #or swahili, somali, yoruba

   for data in ciral_dataset['dev']:  # or 'testA' or 'testB'
      query_id = data['query_id']
      query = data['query']
      pos_qrels = data['positive_passages']
      neg_qrels = data['negative_passages']

      # To load test set A's pool judgments
      pools_pos_qrels = data['pools_positive_passages']
      pools_neg_qrels = data['pools_negative_passages']

      for qrel in pos_qrels:
         docid = qrel['docid']
         text = qrel['text']
   ```



   
## Citation

@misc{CiralHfCite,
  title = {{CIRAL: A Test Suite for {CLIR} in {A}frican Languages}},
  author = {Mofetoluwa Adeyemi and Akintunde Oladipo and Xinyu Zhang and David Alfonso-Hermelo and Mehdi Rezagholizadeh and Boxing Chen and Jimmy Lin},
  year = 2023,
  url = {https://huggingface.co/datasets/CIRAL/ciral},
  urldate = {2023-12-19}
}