CIRAL-Baselines / README.md
Mofe's picture
Create README.md
0d3fa80
|
raw
history blame contribute delete
No virus
577 Bytes

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
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