Skip to content

Latest commit

 

History

History
80 lines (64 loc) · 4.66 KB

regressions-ciral-v1.0-yo.md

File metadata and controls

80 lines (64 loc) · 4.66 KB

Anserini Regressions: CIRAL (v1.0) — Yoruba

This page documents BM25 regression experiments for CIRAL (v1.0) — Yoruba with query translations. To be clear, the queries are in Yoruba (human translations) and the corpus is in Yoruba.

The exact configurations for these regressions are stored in this YAML file. Note that this page is automatically generated from this template as part of Anserini's regression pipeline, so do not modify this page directly; modify the template instead.

From one of our Waterloo servers (e.g., orca), the following command will perform the complete regression, end to end:

python src/main/python/run_regression.py --index --verify --search --regression ciral-v1.0-yo

Indexing

Typical indexing command:

bin/run.sh io.anserini.index.IndexCollection \
  -threads 16 \
  -collection MrTyDiCollection \
  -input /path/to/ciral-yoruba \
  -generator DefaultLuceneDocumentGenerator \
  -index indexes/lucene-index.ciral-v1.0-yo/ \
  -storePositions -storeDocvectors -storeRaw -language yo \
  >& logs/log.ciral-yoruba &

See this page for more details about the CIRAL corpus. For additional details, see explanation of common indexing options.

Retrieval

After indexing has completed, you should be able to perform retrieval as follows:

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.ciral-v1.0-yo/ \
  -topics tools/topics-and-qrels/topics.ciral-v1.0-yo-test-a-native.tsv \
  -topicReader TsvInt \
  -output runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-a-native.txt \
  -bm25 -hits 1000 -language yo &
bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.ciral-v1.0-yo/ \
  -topics tools/topics-and-qrels/topics.ciral-v1.0-yo-test-a-native.tsv \
  -topicReader TsvInt \
  -output runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-a-native.txt \
  -bm25 -hits 1000 -language yo &
bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.ciral-v1.0-yo/ \
  -topics tools/topics-and-qrels/topics.ciral-v1.0-yo-test-b-native.tsv \
  -topicReader TsvInt \
  -output runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-b-native.txt \
  -bm25 -hits 1000 -language yo &

Evaluation can be performed using trec_eval:

bin/trec_eval -c -m ndcg_cut.20 tools/topics-and-qrels/qrels.ciral-v1.0-yo-test-a.tsv runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-a-native.txt
bin/trec_eval -c -m recall.100 tools/topics-and-qrels/qrels.ciral-v1.0-yo-test-a.tsv runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-a-native.txt
bin/trec_eval -c -m ndcg_cut.20 tools/topics-and-qrels/qrels.ciral-v1.0-yo-test-a-pools.tsv runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-a-native.txt
bin/trec_eval -c -m recall.100 tools/topics-and-qrels/qrels.ciral-v1.0-yo-test-a-pools.tsv runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-a-native.txt
bin/trec_eval -c -m ndcg_cut.20 tools/topics-and-qrels/qrels.ciral-v1.0-yo-test-b.tsv runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-b-native.txt
bin/trec_eval -c -m recall.100 tools/topics-and-qrels/qrels.ciral-v1.0-yo-test-b.tsv runs/run.ciral-yoruba.bm25-default.topics.ciral-v1.0-yo-test-b-native.txt

Effectiveness

With the above commands, you should be able to reproduce the following results:

nDCG@20 BM25 (default)
CIRAL Yoruba: Test Set A (Shallow Judgements) 0.4023
CIRAL Yoruba: Test Set A (Pools) 0.3118
CIRAL Yoruba: Test Set B 0.3459
R@100 BM25 (default)
CIRAL Yoruba: Test Set A (Shallow Judgements) 0.6659
CIRAL Yoruba: Test Set A (Pools) 0.4899
CIRAL Yoruba: Test Set B 0.6434