tonellotto / pyterrier_doc2query

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyTerrier_doc2query

This is the PyTerrier plugin for the docTTTTTquery approach for document expansion by query prediction [Nogueira20].

Installation

This repostory can be installed using Pip.

pip install --upgrade git+https://github.com/terrierteam/pyterrier_doc2query.git

You will also need a fine-tuned checkpoint (unzipped) for the T5 model from the docTTTTTquery repository.

What does it do?

A Doc2Query object has a transform() function, which takes the text of each document, and suggests questions for that text.


sample_doc = "The presence of communication amid scientific minds was equally important to the success of the Manhattan Project as scientific intellect was. The only cloud hanging over the impressive achievement of the atomic researchers and engineers is what their success truly meant; hundreds of thousands of innocent lives obliterated"

import pyterrier_doc2query
import pandas as pd
doc2query = pyterrier_doc2query.Doc2Query("/path/to/checkpoint", out_attr="text")
doc2query.transform(pd.DataFrame([{"docno" : "d1", "text" : sample_doc]]))

The resulting dataframe returned by transform() will have an additional "query_gen" column, which contains the generated queries, such as:

docno querygen
"d1" 'what was the importance of the manhattan project to the united states atom project? what influenced the success of the united states why was the manhattan project a success? why was it important'

As a PyTerrier transformer, there are lots of ways to introduce Doc2query into a PyTerrier retrieval process.

Using Doc2Query for Indexing

Then, indexing is as easy as instantiating the Doc2Query object and a PyTerrier indexer, pointing at the (unzipped) checkpoint and the directory in which you wish to create an index.

dataset = pt.get_dataset("irds:vaswani")
import pyterrier_doc2query
doc2query = pyterrier_doc2query.Doc2Query("/path/to/checkpoint", out_attr="text")
indexer = doc2query >> pt.IterDictIndexer(index_loc)
indexer.index(dataset.get_corpus_iter())

Using Doc2Query for Retrieval

Doc2query can also be used at retrieval time (i.e. on retrieved documents) rather than at indexing time.

import pyterrier_doc2query
doc2query = pyterrier_doc2query.Doc2Query("/path/to/checkpoint", out_attr="querygen")


dataset = pt.get_dataset("irds:vaswani")
bm25 = pt.BatchRetrieve(pt.get_dataset("vaswani").get_index(), wmodel="BM25")
bm25 >> pt.get_text(dataset) >> doc2query >> pt.text.scorer(body_attr="querygen", wmodel="BM25")

Examples

Checkout out the notebooks, even on Colab:

Implementation Details

We use a PyTerrier transformer to rewrite documents by doc2query.

References

Credits

  • Craig Macdonald, University of Glasgow

About


Languages

Language:Jupyter Notebook 98.0%Language:Python 2.0%