Mofe commited on
Commit
d913299
1 Parent(s): bc2a31e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -7
README.md CHANGED
@@ -20,17 +20,20 @@ viewer: true
20
  # Dataset Summary
21
 
22
  CIRAL is a collection for cross-lingual information retrieval research across four (4) African languages. The collection comprises English queries and query-passage
 
23
 
24
- This dataset contains the queries and relevance judgements.
25
 
26
- ## Load Dataset
 
27
 
28
- An example to load the dataset
 
 
 
29
 
30
- ```python
31
- language = "hausa"
32
- dataset = load_dataset("ciral/ciral", language)
33
- ```
34
 
35
  ## Citation
36
 
 
20
  # Dataset Summary
21
 
22
  CIRAL is a collection for cross-lingual information retrieval research across four (4) African languages. The collection comprises English queries and query-passage
23
+ 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)
24
 
 
25
 
26
+ # Dataset Structure
27
+ To download the files: The queries can be found under `ciral-{lang}/topics` and are in `.tsv` formats with each line in the form:
28
 
29
+ ```
30
+ qid\tquery
31
+ ```
32
+ while the judgements are in the folder `ciral-{lang}/qrels`, with each file in the standard TREC format:
33
 
34
+ ```
35
+ qid Q0 docid relevance
36
+ ```
 
37
 
38
  ## Citation
39