File size: 577 Bytes
0d3fa80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## CIRAL Baselines and Indexes

### Reproduction

This repo provides the CIRAL's built indexes (Pre-built indexes) to reproduce baselines. 

To search using the indexes:

1. Afriberta-DPR
```bash
lang=yo # or ha, so, sw
set=train # or test

run_file=runs/run.ciral.afriberta-dpr.${lang}.${set}.txt

python -m pyserini.search.faiss \
  --encoder-class auto \
  --encoder castorini/afriberta-dpr-ptf-msmarco-ft-latin-mrtydi  \
  --topics /path/to/topics \
  --index /path/to/faiss.ciral-v1.0-${lang}-afriberta-dpr \
  --output ${run_file} --batch 128 --threads 16 --hits 1000
```