Skip to content

Latest commit

 

History

History
119 lines (88 loc) · 6.08 KB

regressions-core17.md

File metadata and controls

119 lines (88 loc) · 6.08 KB

Anserini Regressions: TREC 2017 Common Core Track

Models: various bag-of-words approaches

This page describes regressions for the TREC 2017 Common Core Track, which uses the New York Times Annotated Corpus. 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 core17

Indexing

Typical indexing command:

bin/run.sh io.anserini.index.IndexCollection \
  -collection NewYorkTimesCollection \
  -input /path/to/nyt \
  -generator DefaultLuceneDocumentGenerator \
  -index indexes/lucene-index.nyt/ \
  -threads 16 -storePositions -storeDocvectors -storeRaw \
  >& logs/log.nyt &

The directory /path/to/nyt_corpus/ should be the root directory of the New York Times Annotated Corpus, i.e., ls /path/to/nyt_corpus/ should bring up a bunch of subdirectories, 1987 to 2007.

For additional details, see explanation of common indexing options.

Retrieval

Topics and qrels are stored here, which is linked to the Anserini repo as a submodule. They are downloaded from NIST:

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

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.nyt/ \
  -topics tools/topics-and-qrels/topics.core17.txt \
  -topicReader Trec \
  -output runs/run.nyt.bm25.topics.core17.txt \
  -bm25 &

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.nyt/ \
  -topics tools/topics-and-qrels/topics.core17.txt \
  -topicReader Trec \
  -output runs/run.nyt.bm25+rm3.topics.core17.txt \
  -bm25 -rm3 &

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.nyt/ \
  -topics tools/topics-and-qrels/topics.core17.txt \
  -topicReader Trec \
  -output runs/run.nyt.bm25+ax.topics.core17.txt \
  -bm25 -axiom -axiom.deterministic -rerankCutoff 20 &

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.nyt/ \
  -topics tools/topics-and-qrels/topics.core17.txt \
  -topicReader Trec \
  -output runs/run.nyt.ql.topics.core17.txt \
  -qld &

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.nyt/ \
  -topics tools/topics-and-qrels/topics.core17.txt \
  -topicReader Trec \
  -output runs/run.nyt.ql+rm3.topics.core17.txt \
  -qld -rm3 &

bin/run.sh io.anserini.search.SearchCollection \
  -index indexes/lucene-index.nyt/ \
  -topics tools/topics-and-qrels/topics.core17.txt \
  -topicReader Trec \
  -output runs/run.nyt.ql+ax.topics.core17.txt \
  -qld -axiom -axiom.deterministic -rerankCutoff 20 &

Evaluation can be performed using trec_eval:

bin/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.core17.txt runs/run.nyt.bm25.topics.core17.txt

bin/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.core17.txt runs/run.nyt.bm25+rm3.topics.core17.txt

bin/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.core17.txt runs/run.nyt.bm25+ax.topics.core17.txt

bin/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.core17.txt runs/run.nyt.ql.topics.core17.txt

bin/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.core17.txt runs/run.nyt.ql+rm3.topics.core17.txt

bin/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.core17.txt runs/run.nyt.ql+ax.topics.core17.txt

Effectiveness

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

MAP BM25 +RM3 +Ax QL +RM3 +Ax
TREC 2017 Common Core Track Topics 0.2087 0.2798 0.2739 0.2032 0.2593 0.2579
P30 BM25 +RM3 +Ax QL +RM3 +Ax
TREC 2017 Common Core Track Topics 0.4293 0.5027 0.4940 0.4467 0.4827 0.4893

Reproduction Log*