instructor : dr. sumanta guha

28
Introduction to Information Retrieval Information Retrieval and Data Information Retrieval and Data Mining (AT71.07) Mining (AT71.07) Comp. Sc. and Inf. Mgmt. Comp. Sc. and Inf. Mgmt. Asian Institute of Asian Institute of Technology Technology Instructor : Prof. Sumanta Guha Slide Sources : Introduction to Information Retrieval book slides from Stanford University, adapted and supplemented Chapter 11 : Probabilistic information retrieval 1

Upload: presta

Post on 14-Jan-2016

28 views

Category:

Documents


0 download

DESCRIPTION

Information Retrieval and Data Mining (AT71.07) Comp. Sc. and Inf. Mgmt. Asian Institute of Technology. Instructor : Dr. Sumanta Guha Slide Sources : Introduction to Information Retrieval book slides from Stanford University, adapted and supplemented - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Information Retrieval and Data Mining Information Retrieval and Data Mining (AT71.07)(AT71.07)Comp. Sc. and Inf. Mgmt.Comp. Sc. and Inf. Mgmt.Asian Institute of TechnologyAsian Institute of TechnologyInstructor: Prof. Sumanta Guha

Slide Sources: Introduction to Information Retrieval book slides from Stanford University, adapted

and supplemented

Chapter 11: Probabilistic information retrieval

1

Page 2: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Introduction to

Information Retrieval

CS276Information Retrieval and Web Search

Christopher Manning and Prabhakar RaghavanLecture 11: Probabilistic information retrieval

Page 3: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Recap of the last lecture Improving search results

Especially for high recall. E.g., searching for aircraft so it matches with plane; thermodynamics with heat

Options for improving results… Global methods

Query expansion Thesauri Automatic thesaurus generation

Global indirect relevance feedback Local methods

Relevance feedback Pseudo relevance feedback

Page 4: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probabilistic relevance feedback Rather than reweighting in a vector space… If user has told us some relevant and some irrelevant

documents, then we can proceed to build a probabilistic classifier, such as a Naive Bayes model: P(tk|R) = |Drk| / |Dr|

P(tk|NR) = |Dnrk| / |Dnr| tk is a term; Dr is the set of known relevant documents; Drk is the

subset that contain tk; Dnr is the set of known irrelevant documents; Dnrk is the subset that contain tk.

Page 5: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Why probabilities in IR?

User Information Need

Documents DocumentRepresentation

DocumentRepresentation

QueryRepresentation

QueryRepresentation

How to match?How to match?

In traditional IR systems, matching between each document andquery is attempted in a semantically imprecise space of index terms.

Probabilities provide a principled foundation for uncertain reasoning.Can we use probabilities to quantify our uncertainties?

Uncertain guess ofwhether document has relevant content

Understandingof user need isuncertain

Page 6: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probabilistic IR topics

Classical probabilistic retrieval model Probability ranking principle, etc.

(Naïve) Bayesian Text Categorization Bayesian networks for text retrieval Language model approach to IR

An important emphasis in recent work

Probabilistic methods are one of the oldest but also one of the currently hottest topics in IR. Traditionally: neat ideas, but they’ve never won on

performance. It may be different now.

Page 7: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

The document ranking problem We have a collection of documents User issues a query A list of documents needs to be returned Ranking method is core of an IR system:Ranking method is core of an IR system:

In what order do we present documents to the user?In what order do we present documents to the user? We want the “best” document to be first, second best

second, etc…. Idea: Rank by probability of relevance of the Idea: Rank by probability of relevance of the

document w.r.t. information needdocument w.r.t. information need P(relevant|documenti, query)

Page 8: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Recall a few probability basics For events a and b: Bayes’ Rule

Odds:

aaxxpxbp

apabp

bp

apabpbap

apabpbpbap

apabpbpbapbapbap

,)()|(

)()|(

)(

)()|()|(

)()|()()|(

)()|()()|()(),(

)(1

)(

)(

)()(

ap

ap

ap

apaO

Posterior

Prior

p(b) = p(b|a)p(a) + p(b|a)p(a)

Bayes’ Rule

Page 9: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

The Probability Ranking Principle “If a reference retrieval system's response to each request is a

ranking of the documents in the collection in order of decreasing probability of relevance to the user who submitted the request, where the probabilities are estimated as accurately as possible on the basis of whatever data have been made available to the system for this purpose, the overall effectiveness of the system to its user will be the best that is obtainable on the basis of those data.”

[1960s/1970s] S. Robertson, W.S. Cooper, M.E. Maron; van Rijsbergen (1979:113); Manning & Schütze (1999:538)

Page 10: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probability Ranking Principle

Let x be a document in the collection. Let R represent relevance of a document w.r.t. given (fixed) query and let NR represent non-relevance.

)(

)()|()|(

)(

)()|()|(

xp

NRpNRxpxNRp

xp

RpRxpxRp

p(x|R), p(x|NR) – probability that if a relevant (non-relevant) document is retrieved, it is x.

Need to find p(R|x) - probability that a document x is relevant.

p(R), p(NR) – prior probabilityof retrieving a (non) relevantdocument

1)|()|( xNRpxRp

R={0,1} vs. NR/R

Page 11: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probability Ranking Principle (PRP) Simple case: no selection costs or other utility

concerns that would differentially weight errors

Bayes’ Optimal Decision Rule x is relevant iff p(R|x) > p(NR|x)

PRP in action: Rank all documents by p(R|x)

Theorem: Using the PRP is optimal, in that it minimizes the loss

(Bayes risk) under 1/0 loss Provable if all probabilities correct, etc. [e.g., Ripley 1996]

Page 12: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probability Ranking Principle How do we compute all those probabilities?

Do not know exact probabilities, have to use estimates Binary Independence Retrieval (BIR) – which we

discuss later today – is the simplest model Questionable assumptions

“Relevance” of each document is independent of relevance of other documents. Really, it’s bad to keep on returning duplicates

Boolean model of relevance That one has a single step information need

Seeing a range of results might let user refine query

Page 13: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probabilistic Retrieval Strategy

Estimate how terms contribute to relevance How do things like tf, df, and length influence your

judgments about document relevance? One answer is the Okapi formulae (S. Robertson)

Combine to find document relevance probability

Order documents by decreasing probability

Page 14: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probabilistic Ranking

Basic concept:

"For a given query, if we know some documents that are relevant, terms that occur in those documents should be given greater weighting in searching for other relevant documents.

By making assumptions about the distribution of terms and applying Bayes Theorem, it is possible to derive weights theoretically."

Van Rijsbergen

Page 15: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model Traditionally used in conjunction with PRP “Binary” = Boolean: documents are represented as binary

incidence vectors of terms (cf. lecture 1): iff term i is present in document x.

“Independence”: terms occur in documents independently Different documents can be modeled as same vector

Bernoulli Naive Bayes model (cf. text categorization!)

),,( 1 nxxx

1ix

Page 16: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model Queries: binary term incidence vectors Given query q,

for each document d need to compute p(R|q,d). replace with computing p(R|q,x) where x is binary term

incidence vector representing d Will use odds and Bayes’ Rule:

)|(),|()|(

)|(),|()|(

),|(

),|(),|(

qxpqNRxpqNRp

qxpqRxpqRp

xqNRp

xqRpxqRO

R = 1

R = 0

A cleaner way to write the formula is to “delete” q all through as it does not change.

Page 17: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model

• Using Independence Assumption:

n

i i

i

qNRxp

qRxp

qNRxp

qRxp

1 ),|(

),|(

),|(

),|(

),|(

),|(

)|(

)|(

),|(

),|(),|(

qNRxp

qRxp

qNRp

qRp

xqNRp

xqRpxqRO

O(R|q), which is constant for a given query = does not depend on the document

Needs estimation

n

i i

i

qNRxp

qRxpqROxqRO

1 ),|(

),|()|(),|(

• So:

Page 18: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model

n

i i

i

qNRxp

qRxpqROxqRO

1 ),|(

),|()|(),|(

• Since xi is either 0 or 1:

01 ),|0(

),|0(

),|1(

),|1()|(),|(

ii x i

i

x i

i

qNRxp

qRxp

qNRxp

qRxpqROxqRO

• Let );,|1( qRxprobp ii );,|1( qNRxprobu ii

• Assume, for all terms not occurring in the query, i.e., qi = 0, that pi = ui (in other words, non-query terms are equally likely to appear in relevant and non-relevant docs)

Doc Relevant (R = 1) Non-relevant (R = 0)Term present xi = 1 pi ui

Term absent xi = 0 1 – pi 1 – ui

So all terms correspondingto qi = 0 will have equal values in numerator and denominator and, therefore, will vanish.

Page 19: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model

11

11

10

111

101

1

1

)1(

)1()|(

1

1

1

1

1

1)|(

1

1)|(),|(

iii

i

i

i

i

i

iii

i

iii

q i

i

qx ii

ii

qx i

i

qx i

i

qx i

i

qx i

i

qx i

i

qx i

i

u

p

pu

upqRO

u

p

u

p

p

u

u

pqRO

u

p

u

pqROxqRO

Matching query terms Non-matching query terms

Insert new terms which cancel!

Matching query terms All query terms

Page 20: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model

Constant foreach query, does

not depend on docOnly quantity to be estimated

for rankings

11 1

1

)1(

)1()|(),|(

iii q i

i

qx ii

ii

u

p

pu

upqROxqRO

• Retrieval Status Value:

11 )1(

)1(log

)1(

)1(log

iiii qx ii

ii

qx ii

iid pu

up

pu

upRSV

Page 21: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model

• All boils down to computing RSV:

• Equivalently,

11 )1(

)1(log

)1(

)1(log

iiii qx ii

ii

qx ii

iid pu

up

pu

upRSV

1

;ii qx

id cRSV

So, how do we compute ci’s from our data ?

i

i

i

i

ii

iii u

u

p

p

pu

upc

1

log1

log)1(

)1(log

Page 22: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model• Estimating RSV coefficients.• For each term i look at this table of document counts:

Docs

Relevant Non-Relevant Total

xi=1 s dfi – s dfi

xi=0 S – s (N – dfi) – (S – s) N – dfi

Total S N-S N

S

spi

SN

sui

idf

))()df(()df(

)(log

)1(

)1(log),,df,(

iii sSNs

sSs

pu

upsSNKc

ii

iii

• Estimates:

N = no. of docs in archivedfi = doc frequency of term xi

S = no. of relevant docs s = no. of relevant docs containing xi

Page 23: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Binary Independence Model• To avoid the possibility of zeroes (e.g., if every or no relevant doc has a particular term) standard procedure is to add ½ to each of the quantities in the center four cells of the table of the previous slide. Accordingly:

)df()df(

)()(log),,df,(ˆ

21

i21

i

21

21

i

sSNs

sSssSNKci

Page 24: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Estimation – key challenge If non-relevant documents are approximated by the whole

collection, then ui (prob. of occurrence in non-relevant documents for query) is dfi /N and log (1– ui)/ui = log (N – dfi)/ dfi

≈ log N/dfi (assuming dfi small compared to N)

= idf (theoretical justification for idf!)

pi (probability of occurrence in relevant documents) can be estimated in various ways: from relevant documents if we know some

Relevance weighting can be used in feedback loop constant (Croft and Harper combination match) – then just get idf weighting

of terms proportional to prob. of occurrence in collection

more accurately, to log of this (Greiff, SIGIR 1998)

Page 25: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

25

Iteratively estimating pi1. Assume that pi constant over all xi in query

pi = 0.5 (even odds) for any given term; in this case what is

2. Determine guess of relevant document set:

V is fixed size set of highest ranked documents on this model (note: now a bit like tf.idf!)

3. We need to improve our guesses for pi and ui, so Use distribution of xi in docs in V. Let Vi be set of documents

containing xi pi = |Vi| / |V|

Assume if not retrieved then not relevant ui = (dfi – |Vi|) / (N – |V|)

4. Go to 2. until converges then return ranking

1ii qx

id cRSVi

i

i

i

ii

iii u

u

p

p

pu

upc

1

log1

log)1(

)1(loggiven ?

Page 26: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Probabilistic Relevance Feedback1. Guess a preliminary probabilistic description of R and use

it to retrieve a first set of documents V, as above.2. Interact with the user to refine the description: partition V

into relevant VR and non-relevant VNR3. Re-estimate pi and ui on the basis of these

Or can combine new information with original guess (use Bayesian prior):

where is prior weight and VRi is the set of docs in VR containing xi.

4. Repeat, generating a succession of approximations to pi.

||

|| )()1(

VR

pVRp

kiik

i

Page 27: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

PRP and BIR

Getting reasonable approximations of probabilities is possible.

Requires restrictive assumptions: term independence terms not in query don’t affect the outcome boolean representation of

documents/queries/relevance document relevance values are independent

Some of these assumptions can be removed Problem: either require partial relevance information or only can

derive somewhat inferior term weights

Page 28: Instructor : Dr. Sumanta Guha

Introduction to Information RetrievalIntroduction to Information Retrieval

Good and Bad News Standard Vector Space Model

Empirical for the most part; success measured by results Few properties provable

Probabilistic Model Advantages Based on a firm theoretical foundation Theoretically justified optimal ranking scheme

Disadvantages Making the initial guess to get V Binary word-in-doc weights (not using term frequencies) Independence of terms (can be alleviated) Amount of computation Has never worked convincingly better in practice