Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 3.19 KB

regressions-fire12-hi.md

File metadata and controls

61 lines (40 loc) · 3.19 KB

Anserini: Regressions for FIRE 2012 Monolingual Hindi

This page documents regression experiments for FIRE 2012 ad hoc retrieval (Monolingual Hindi). The document collection can be found in FIRE data page.

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.

Indexing

Typical indexing command:

nohup sh target/appassembler/bin/IndexCollection -collection CleanTrecCollection -input /path/to/fire12-hi \
 -index lucene-index.fire12-hi.pos+docvectors+rawdocs -generator DefaultLuceneDocumentGenerator -threads 16 \
 -storePositions -storeDocvectors -storeRaw -language hi >& log.fire12-hi.pos+docvectors+rawdocs &

The directory /path/to/fire12-hi/ should be a directory containing the collection, containing hi_AmarUjala and hi_NavbharatTimes directories. There should be 331,599 documents in total.

For additional details, see explanation of common indexing options.

Retrieval

Topics and qrels are stored in src/main/resources/topics-and-qrels/, downloaded from the FIRE data page:

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

nohup target/appassembler/bin/SearchCollection -index lucene-index.fire12-hi.pos+docvectors+rawdocs \
 -topicreader Trec -topics src/main/resources/topics-and-qrels/topics.fire12hi.176-225.txt \
 -language hi -bm25 -output run.fire12-hi.bm25.topics.fire12hi.176-225.txt &

Evaluation can be performed using trec_eval:

eval/trec_eval.9.0.4/trec_eval -m map -m P.20 -m ndcg_cut.20 src/main/resources/topics-and-qrels/qrels.fire12hi.176-225.txt run.fire12-hi.bm25.topics.fire12hi.176-225.txt

Effectiveness

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

MAP BM25
FIRE 2012 (Monolingual Hindi) 0.3867
P20 BM25
FIRE 2012 (Monolingual Hindi) 0.4470
NDCG20 BM25
FIRE 2012 (Monolingual Hindi) 0.5310