Introduction To: Information Retrieval
Introduction To: Information Retrieval
Introduction to
Information Retrieval
CS276
Information Retrieval and Web Search
Chris Manning and Pandu Nayak
Systems issues
Introduction to Information Retrieval
Background
Score computation is a large (10s of %) fraction of
the CPU work on a query
Generally, we have a tight budget on latency (say, 250ms)
CPU provisioning doesn’t permit exhaustively scoring every
document on every query
Today we’ll look at ways of cutting CPU usage for
scoring, without compromising the quality of results
(much)
Basic idea: avoid scoring docs that won’t make it into
the top K
2
Introduction to Information Retrieval
3
Introduction to Information Retrieval Sec. 7.1.1
.3 .8 .1
.1
Introduction to Information Retrieval Sec. 7.1.1
Bottlenecks
Primary computational bottleneck in scoring: cosine
computation
Can we avoid all this computation?
Yes, but may sometimes get it wrong
a doc not in the top K may creep into the list of K
output docs
As noted earlier, this may not be a bad thing
Introduction to Information Retrieval
10
Introduction to Information Retrieval Sec. 7.1.1
Generic approach
Find a set A of contenders, with K < |A| << N
A does not necessarily contain the top K, but has
many docs from among the top K
Return the top K docs in A
Think of A as pruning non-contenders
The same approach is also used for other (non-
cosine) scoring functions
Will look at several schemes following this approach
Introduction to Information Retrieval Sec. 7.1.2
Index elimination
Basic cosine computation algorithm only considers
docs containing at least one query term
Take this further:
Only consider high-idf query terms
Only consider docs containing many query terms
Introduction to Information Retrieval Sec. 7.1.2
3 of 4 query terms
Antony 3 4 8 16 32 64 128
Brutus 2 4 8 16 32 64 128
Caesar 1 2 3 5 8 13 21 34
Calpurnia 13 16 32
Champion lists
Precompute for each dictionary term t, the r docs of
highest weight in t’s postings
Call this the champion list for t
(aka fancy list or top docs for t)
Note that r has to be chosen at index build time
Thus, it’s possible that r < K
At query time, only compute scores for docs in the
champion list of some query term
Pick the K top-scoring docs from amongst these
Introduction to Information Retrieval Sec. 7.1.3
Exercises
How can Champion Lists be implemented in an
inverted index?
Introduction to Information Retrieval
QUERY-INDEPENDENT DOCUMENT
SCORES
18
Introduction to Information Retrieval Sec. 7.1.4
Modeling authority
Assign to each document a query-independent
quality score in [0,1] to each document d
Denote this by g(d)
Thus, a quantity like the number of citations is scaled
into [0,1]
Exercise: suggest a formula for this.
Introduction to Information Retrieval Sec. 7.1.4
Net score
Consider a simple total score combining cosine
relevance and authority
net-score(q,d) = g(d) + cosine(q,d)
Can use some other linear combination
Indeed, any function of the two “signals” of user happiness
Now we seek the top K docs by net score
Introduction to Information Retrieval Sec. 7.1.4
CLUSTER PRUNING
25
Introduction to Information Retrieval Sec. 7.1.6
Visualization
Query
Leader Follower
Introduction to Information Retrieval Sec. 7.1.6
General variants
Have each follower attached to b1=3 (say) nearest
leaders.
From query, find b2=4 (say) nearest leaders and their
followers.
Can recurse on leader/follower construction.
Introduction to Information Retrieval
TIERED INDEXES
31
Introduction to Information Retrieval Sec. 7.1.4
Tiered indexes
Break postings up into a hierarchy of lists
Most important
…
Least important
Can be done by g(d) or another measure
Inverted index thus broken up into tiers of
decreasing importance
At query time use top tier unless it fails to yield K
docs
If so drop to lower tiers
Introduction to Information Retrieval Sec. 7.2.1
Impact-ordered postings
We only want to compute scores for docs for which
wft,d is high enough
We sort each postings list by wft,d
Now: not all postings in a common order!
How do we compute scores in order to pick off top
K?
Two ideas follow
Introduction to Information Retrieval Sec. 7.1.5
1. Early termination
When traversing t’s postings, stop early after either
a fixed number of r docs
wft,d drops below some threshold
Take the union of the resulting sets of docs
One from the postings of each query term
Compute only the scores for docs in this union
Introduction to Information Retrieval Sec. 7.1.5
2. idf-ordered terms
When considering the postings of query terms
Look at them in order of decreasing idf
High idf terms likely to contribute most to score
As we update score contribution from each query
term
Stop if doc scores relatively unchanged
Can apply to cosine or some other net scores
Introduction to Information Retrieval
SAFE RANKING
38
Introduction to Information Retrieval
39
Introduction to Information Retrieval
Safe ranking
When we output the top K docs, we have a proof
that these are indeed the top K
Does this imply we always have to compute all N
cosines?
We’ll look at pruning methods
So we only fully score some J documents
40
Introduction to Information Retrieval
WAND scoring
An instance of DAAT scoring
Basic idea reminiscent of branch and bound
We maintain a running threshold score – e.g., the Kth
highest score computed so far
We prune away all docs whose cosine scores are
guaranteed to be below the threshold
We compute exact cosine scores for only the un-pruned
docs
Upper bounds
At all times for each query term t, we maintain an
upper bound UBt on the score contribution of any doc
to the right of the finger
Max (over docs remaining in t’s postings) of wt(doc)
finger
t 3 7 11 17 29 38 57 79 UBt = wt(38)
Pivoting
Query: catcher in the rye
Let’s say the current finger positions are as below
Threshold = 6.8
P
44
i
Introduction to Information Retrieval
Update UB’s
P
45
i
Introduction to Information Retrieval
catcher 589
rye 589
in 589
the 762
46
Introduction to Information Retrieval
WAND summary
In tests, WAND leads to a 90+% reduction in score
computation
Better gains on longer queries
Nothing we did was specific to cosine ranking
We need scoring to be additive by term
WAND and variants give us safe ranking
Possible to devise “careless” variants that are a bit faster
but not safe (see summary in Ding+Suel 2011)
Ideas combine some of the non-safe scoring we
considered
47
Introduction to Information Retrieval
48
Introduction to Information Retrieval Sec. 7.2.2
Query parsers
Free text query from user may in fact spawn one or
more queries to the indexes, e.g., query rising
interest rates
Run the query as a phrase query
If <K docs contain the phrase rising interest rates, run the
two phrase queries rising interest and interest rates
If we still have <K docs, run the vector space query rising
interest rates
Rank matching docs by vector space scoring
This sequence is issued by a query parser
Introduction to Information Retrieval Sec. 7.2.3
Aggregate scores
We’ve seen that score functions can combine cosine,
static quality, proximity, etc.
How do we know the best combination?
Some applications – expert-tuned
Increasingly common: machine-learned
Introduction to Information Retrieval Sec. 7.2.4