It is very easy to alter the retrieval process in Terrier, as there are many "hooks" at which external classes can be involved. Firstly, you are free when writing your own application to render the results from Terrier in your own way. Results in Terrier come in the form of a ResultSet.
An application's interface with Terrier is through the Manager class. The manager firstly pre-processes the query, by applying it to the configured TermPipeline. Then it calls the Matching class, which is responsible for matching documents to the query, and scoring the documents using a WeightingModel. Internally, Matching implementations use the PostingListManager to open an IterablePosting for each query term. The overall score of a document to the entire query can be modified by using a DocumentScoreModifier, which can be set by the matching.dsms property.
Once the ResultSet has been returned to the Manager, there are two further phases, namely PostProcessing and PostFiltering. In PostProcessing, the ResultSet can be altered in any way - for example, QueryExpansion expands the query, and then calls Matching again to generate an improved ranking of documents. PostFiltering is simpler, allowing documents to be either included or excluded - this is ideal for interactive applications where users want to restrict the domain of the documents being retrieved.
TRECQuerying is the main way in which retrieval is deployed for batch retrieval experiments. It has a multitude of ways in which it can be extended:
QueryExpansion has various ways in which it can be extended:
It is very easy to implement your own weighting models in Terrier. Simply write a new class that extends WeightingModel. What's more, there are many examples weighting models in org.terrier.matching.models.
Generic Divergence From Randomness (DFR) Weighting ModelsThe DFRWeightingModel class provides an interface for freely combining different components of the DFR framework. It breaks a DFR weighting model into three components: the basic model for randomness, the first normalisation by the after effect, and term frequency normalisation. Details of these three components can be found from a description of the DFR framework. The DFRWeightingModel class provides an alternate and more flexible way of using the DFR weighting models in Terrier. For example, to use the PL2 model, the name of the model PL2 should be given in etc/trec.models, or set using the property trec.model. Alternatively, using the DFRWeightingModel class, we can replace PL2 with DFRWeightingModel(P, L, 2), where the three components of PL2 are specified in the brackets, separated by commas. If we do not want to use one of the three components, for example the first normalisation L, we can leave the space for this component blank (i.e. DFRWeightingModel(P, , 2)). We can also discard term frequency normalisation by removing the 2 between the brackets (i.e. DFRWeightingModel(P, , )). However, a basic randomness model must always be given.
The basic randomness models, the first normalisation methods, and the term frequency normalisation methods are included in packages org.terrier.matching.models.basicmodel, org.terrier.matching.models.aftereffect and org.terrier.matching.models.normalisation, respectively. Many implementations of each are provided, allowing a vast number of DFR weighting models to be generated.
Terrier implements three main alternatives for matching documents for a given query, each of which implements the Matching interface:
If you have a more complex document weighting strategy that cannot be handled as a WeightingModel or DocumentScoreModifier, you may wish to implement your own Matching strategy. In particular, BaseMatching is a useful base class. Moreover, the PostingListManager should be used for opening the IterablePosting posting stream for each query term.
Index index = Index.createIndex(); Lexicon<String> lex = index.getLexicon(); LexiconEntry le = lex.getLexiconEntry("term"); if (le != null) System.out.println("Term term occurs in "+ le.getDocumentFrequency() + " documents"); else System.out.println("Term term does not occur");
Index index = Index.createIndex(); Lexicon<String> lex = index.getLexicon(); LexiconEntry le = lex.getLexiconEntry("X"); double p = le == null ? 0.0d : (double) le.getFrequency() / index.getCollectionStatistics().getNumberOfTokens();
Index index = Index.createIndex(); DirectIndex di = index.getDirectIndex(); DocumentIndex doi = index.getDocumentIndex(); Lexicon<String> lex = index.getLexicon(); int docid = 10; //docids are 0-based IterablePosting postings = di.getPostings((BitIndexPointer)doi.getDocumentEntry(docid)); while (postings.next() != IterablePosting.EOL) { Map.Entry<String,LexiconEntry> lee = lex.getLexiconEntry(postings.getId()); System.out.print(lee.getKey() + " with frequency " + postings.getFrequency()); }
Index index = Index.createIndex(); InvertedIndex inv = index.getInvertedIndex(); MetaIndex meta = index.getMetaIndex(); Lexicon<String> lex = index.getLexicon(); LexiconEntry le = lex.getLexiconEntry( "Z" ); IterablePosting postings = inv.getPostings((BitIndexPointer) le); while (postings.next() != IterablePosting.EOL) { String docno = meta.getItem("docno", postings.getId()); System.out.println(docno + " with frequency " + postings.getFrequency()); }
Moreover, if you're not comfortable with using Java, you can dump the indices of a collection using the --print* options of TrecTerrier. See the javadoc of TrecTerrier for more information.
Below, you can find a example sample of using the querying functionalities of Terrier.
String query = "term1 term2"; SearchRequest srq = queryingManager.newSearchRequest("queryID0", query); srq.addMatchingModel("Matching", "PL2"); queryingManager.runPreProcessing(srq); queryingManager.runMatching(srq); queryingManager.runPostProcessing(srq); queryingManager.runPostFilters(srq); ResultSet rs = srq.getResultSet();[Previous: Extending Indexing] [Contents] [Next: Pluggable Compression]
Copyright © 2014 University of Glasgow | All Rights Reserved