Skip to content

Latest commit

 

History

History
76 lines (60 loc) · 4.06 KB

regressions-mrtydi-v1.1-ja.md

File metadata and controls

76 lines (60 loc) · 4.06 KB

Anserini Regressions: Mr. TyDi (v1.1) — Japanese

This page documents BM25 regression experiments for Mr. TyDi (v1.1) — Japanese.

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 mrtydi-v1.1-ja

Indexing

Typical indexing command:

bin/run.sh io.anserini.index.IndexCollection \
  -collection MrTyDiCollection \
  -input /path/to/mrtydi-v1.1-ja \
  -generator DefaultLuceneDocumentGenerator \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -threads 1 -storePositions -storeDocvectors -storeRaw -language ja \
  >& logs/log.mrtydi-v1.1-ja &

See this page for more details about the Mr. TyDi 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.mrtydi-v1.1-japanese/ \
  -topics tools/topics-and-qrels/topics.mrtydi-v1.1-ja.train.txt.gz \
  -topicReader TsvInt \
  -output runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.train.txt \
  -bm25 -hits 100 -language ja &
bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -topics tools/topics-and-qrels/topics.mrtydi-v1.1-ja.dev.txt.gz \
  -topicReader TsvInt \
  -output runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.dev.txt \
  -bm25 -hits 100 -language ja &
bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -topics tools/topics-and-qrels/topics.mrtydi-v1.1-ja.test.txt.gz \
  -topicReader TsvInt \
  -output runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.test.txt \
  -bm25 -hits 100 -language ja &

Evaluation can be performed using trec_eval:

bin/trec_eval -c -M 100 -m recip_rank -c -m recall.100 tools/topics-and-qrels/qrels.mrtydi-v1.1-ja.train.txt runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.train.txt
bin/trec_eval -c -M 100 -m recip_rank -c -m recall.100 tools/topics-and-qrels/qrels.mrtydi-v1.1-ja.dev.txt runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.dev.txt
bin/trec_eval -c -M 100 -m recip_rank -c -m recall.100 tools/topics-and-qrels/qrels.mrtydi-v1.1-ja.test.txt runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.test.txt

Effectiveness

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

MRR@100 BM25
Mr. TyDi (Japanese): train 0.2262
Mr. TyDi (Japanese): dev 0.2250
Mr. TyDi (Japanese): test 0.2125
R@100 BM25
Mr. TyDi (Japanese): train 0.7290
Mr. TyDi (Japanese): dev 0.7252
Mr. TyDi (Japanese): test 0.6431