Models: various bag-of-words approaches
This page describes regressions for the Microblog Tracks from TREC 2011 and 2012 using the Tweets2011 collection. 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 mb11
Note that the Tweets2011 collection is distributed as a list of tweet ids that you have to download yourself, so the effectiveness results you'll get should be similar, but will likely not be identical to the scores reported here.
Indexing the Tweets2011 collection:
target/appassembler/bin/IndexCollection \
-collection TweetCollection \
-input /path/to/mb11 \
-index indexes/lucene-index.mb11/ \
-generator TweetGenerator \
-threads 44 -storePositions -storeDocvectors -storeRaw -uniqueDocid -tweet.keepUrls -tweet.stemming \
>& logs/log.mb11 &
More available indexing options:
-tweet.keepRetweets
: boolean switch to keep retweets while indexing, defaultfalse
-tweet.keepUrls
: boolean switch to keep URLs in the tweet, defaultfalse
-tweet.stemming
: boolean switch to apply Porter stemming while indexing tweets, defaultfalse
-tweet.maxId
: the max tweet Id for indexing. Tweet Ids that are larger (when being parsed to Long type) than this value will NOT be indexed, defaultLONG.MAX_VALUE
-tweet.deletedIdsFile
: a file that contains deleted tweetIds, one per line. these tweeets won't be indexed
For additional details, see explanation of common indexing options.
Topics and qrels are stored here, which is linked to the Anserini repo as a submodule. They are downloaded from NIST:
topics.microblog2011.txt
: topics for the TREC 2011 Microblog Tracktopics.microblog2012.txt
: topics for the TREC 2012 Microblog Trackqrels.microblog2011.txt
: qrels for TREC 2011 Microblog Trackqrels.microblog2012.txt
: qrels for TREC 2012 Microblog Track
After indexing has completed, you should be able to perform retrieval as follows:
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2011.txt \
-topicreader Microblog \
-output runs/run.mb11.bm25.topics.microblog2011.txt \
-searchtweets -bm25 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2012.txt \
-topicreader Microblog \
-output runs/run.mb11.bm25.topics.microblog2012.txt \
-searchtweets -bm25 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2011.txt \
-topicreader Microblog \
-output runs/run.mb11.bm25+rm3.topics.microblog2011.txt \
-searchtweets -bm25 -rm3 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2012.txt \
-topicreader Microblog \
-output runs/run.mb11.bm25+rm3.topics.microblog2012.txt \
-searchtweets -bm25 -rm3 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2011.txt \
-topicreader Microblog \
-output runs/run.mb11.bm25+ax.topics.microblog2011.txt \
-searchtweets -bm25 -axiom -axiom.beta 1.0 -axiom.deterministic -rerankCutoff 20 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2012.txt \
-topicreader Microblog \
-output runs/run.mb11.bm25+ax.topics.microblog2012.txt \
-searchtweets -bm25 -axiom -axiom.beta 1.0 -axiom.deterministic -rerankCutoff 20 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2011.txt \
-topicreader Microblog \
-output runs/run.mb11.ql.topics.microblog2011.txt \
-searchtweets -qld &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2012.txt \
-topicreader Microblog \
-output runs/run.mb11.ql.topics.microblog2012.txt \
-searchtweets -qld &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2011.txt \
-topicreader Microblog \
-output runs/run.mb11.ql+rm3.topics.microblog2011.txt \
-searchtweets -qld -rm3 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2012.txt \
-topicreader Microblog \
-output runs/run.mb11.ql+rm3.topics.microblog2012.txt \
-searchtweets -qld -rm3 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2011.txt \
-topicreader Microblog \
-output runs/run.mb11.ql+ax.topics.microblog2011.txt \
-searchtweets -qld -axiom -axiom.beta 1.0 -axiom.deterministic -rerankCutoff 20 &
target/appassembler/bin/SearchCollection \
-index indexes/lucene-index.mb11/ \
-topics tools/topics-and-qrels/topics.microblog2012.txt \
-topicreader Microblog \
-output runs/run.mb11.ql+ax.topics.microblog2012.txt \
-searchtweets -qld -axiom -axiom.beta 1.0 -axiom.deterministic -rerankCutoff 20 &
Evaluation can be performed using trec_eval
:
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2011.txt runs/run.mb11.bm25.topics.microblog2011.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2012.txt runs/run.mb11.bm25.topics.microblog2012.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2011.txt runs/run.mb11.bm25+rm3.topics.microblog2011.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2012.txt runs/run.mb11.bm25+rm3.topics.microblog2012.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2011.txt runs/run.mb11.bm25+ax.topics.microblog2011.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2012.txt runs/run.mb11.bm25+ax.topics.microblog2012.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2011.txt runs/run.mb11.ql.topics.microblog2011.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2012.txt runs/run.mb11.ql.topics.microblog2012.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2011.txt runs/run.mb11.ql+rm3.topics.microblog2011.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2012.txt runs/run.mb11.ql+rm3.topics.microblog2012.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2011.txt runs/run.mb11.ql+ax.topics.microblog2011.txt
tools/eval/trec_eval.9.0.4/trec_eval -m map -m P.30 tools/topics-and-qrels/qrels.microblog2012.txt runs/run.mb11.ql+ax.topics.microblog2012.txt
With the above commands, you should be able to reproduce the following results:
MAP | BM25 | +RM3 | +Ax | QL | +RM3 | +Ax |
---|---|---|---|---|---|---|
TREC 2011 Microblog Track Topics | 0.3384 | 0.3658 | 0.4008 | 0.3584 | 0.3961 | 0.4201 |
TREC 2012 Microblog Track Topics | 0.1948 | 0.2209 | 0.2309 | 0.2102 | 0.2400 | 0.2474 |
P30 | BM25 | +RM3 | +Ax | QL | +RM3 | +Ax |
TREC 2011 Microblog Track Topics | 0.3959 | 0.4177 | 0.4612 | 0.4061 | 0.4408 | 0.4408 |
TREC 2012 Microblog Track Topics | 0.3316 | 0.3463 | 0.3554 | 0.3333 | 0.3520 | 0.3842 |