mcartright / julien

Toolkit for Information Retrieval research
7 stars 1 forks source link

Implement passage-level retrieval #4

Open mcartright opened 11 years ago

mcartright commented 11 years ago

Need to add passage-level retrieval. Aim for the coolest thing possible, which, I think, is:

mcartright commented 11 years ago

Progress (mentally):

mcartright commented 11 years ago

From Laura:

In order to visually compare different relevance models for document retrieval, I want to get a snippet (aka passage) for each document.

This how I did it: 1) get the original query and parameters 2) add passage retrieval stuff to parameters 3) loop over scored documents 3.1) set working set of passage to the document name 3.2) issue query to next layer which performs query parsing, traversing, and retrieval

Problem: Hereby, I am re-computing the same relevance model over and over and over again.

I thought, hey, why don't I save the traversed Node, and then tell the retrieval to go hunting with this node.

Problem: I need to modify the working set, which is baked into the traversed node.

Any ideas?