Skip to content

Latest commit

 

History

History
79 lines (61 loc) · 4.29 KB

regressions-mrtydi-v1.1-ja.md

File metadata and controls

79 lines (61 loc) · 4.29 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:

target/appassembler/bin/IndexCollection \
  -collection MrTyDiCollection \
  -input /path/to/mrtydi-v1.1-ja \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -generator DefaultLuceneDocumentGenerator \
  -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:

target/appassembler/bin/SearchCollection \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -topics src/main/resources/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 &
target/appassembler/bin/SearchCollection \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -topics src/main/resources/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 &
target/appassembler/bin/SearchCollection \
  -index indexes/lucene-index.mrtydi-v1.1-japanese/ \
  -topics src/main/resources/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:

tools/eval/trec_eval.9.0.4/trec_eval -c -M 100 -m recip_rank -c -m recall.100 src/main/resources/topics-and-qrels/qrels.mrtydi-v1.1-ja.train.txt runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.train.txt
tools/eval/trec_eval.9.0.4/trec_eval -c -M 100 -m recip_rank -c -m recall.100 src/main/resources/topics-and-qrels/qrels.mrtydi-v1.1-ja.dev.txt runs/run.mrtydi-v1.1-ja.bm25.topics.mrtydi-v1.1-ja.dev.txt
tools/eval/trec_eval.9.0.4/trec_eval -c -M 100 -m recip_rank -c -m recall.100 src/main/resources/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.2236
Mr. TyDi (Japanese): dev 0.2241
Mr. TyDi (Japanese): test 0.2112
R@100 BM25
Mr. TyDi (Japanese): train 0.7282
Mr. TyDi (Japanese): dev 0.7274
Mr. TyDi (Japanese): test 0.6451