Download presentation
Presentation is loading. Please wait.
1
Indexing and Representation: The Vector Space Model Document represented by a vector of terms Document represented by a vector of terms Words (or word stems) Words (or word stems) Phrases (e.g. computer science) Phrases (e.g. computer science) Removes words on “stop list” Removes words on “stop list” Documents aren’t about “the” Documents aren’t about “the” Often assumed that terms are uncorrelated. Often assumed that terms are uncorrelated. Correlations between term vectors implies a similarity between documents. Correlations between term vectors implies a similarity between documents. For efficiency, an inverted index of terms is often stored. For efficiency, an inverted index of terms is often stored.
2
Document Representation What values to use for terms Boolean (term present /absent) Boolean (term present /absent) tf (term frequency) - Count of times term occurs in document. tf (term frequency) - Count of times term occurs in document. The more times a term t occurs in document d the more likely it is that t is relevant to the document. The more times a term t occurs in document d the more likely it is that t is relevant to the document. Used alone, favors common words, long documents. Used alone, favors common words, long documents. df document frequency df document frequency The more a term t occurs throughout all documents, the more poorly t discriminates between documents The more a term t occurs throughout all documents, the more poorly t discriminates between documents tf-idf term frequency * inverse document frequency - tf-idf term frequency * inverse document frequency - High value indicates that the word occurs more often in this document than average. High value indicates that the word occurs more often in this document than average.
3
Document Vectors Documents are represented as “bags of words” Documents are represented as “bags of words” Represented as vectors when used computationally Represented as vectors when used computationally A vector is like an array of floating point A vector is like an array of floating point Has direction and magnitude Has direction and magnitude Each vector holds a place for every term in the collection Each vector holds a place for every term in the collection Therefore, most vectors are sparse Therefore, most vectors are sparse
4
Vector Representation Documents and Queries are represented as vectors. Documents and Queries are represented as vectors. Position 1 corresponds to term 1, position 2 to term 2, position t to term t Position 1 corresponds to term 1, position 2 to term 2, position t to term t
5
Document Vectors novagalaxy heath’wood filmroledietfur 1.0 0.5 0.3 1.0 0.5 0.3 0.5 1.0 0.5 1.0 1.0 0.8 0.7 1.0 0.8 0.7 0.9 1.0 0.5 0.9 1.0 0.5 1.0 1.0 1.0 1.0 0.9 1.0 0.9 1.0 0.5 0.7 0.9 0.5 0.7 0.9 0.6 1.0 0.3 0.2 0.8 0.6 1.0 0.3 0.2 0.8 0.7 0.5 0.1 0.3 0.7 0.5 0.1 0.3 ABCDEFGHIABCDEFGHI Document ids
6
Assigning Weights Want to weight terms highly if they are Want to weight terms highly if they are frequent in relevant documents … BUT frequent in relevant documents … BUT infrequent in the collection as a whole infrequent in the collection as a whole
7
Assigning Weights tf x idf measure: tf x idf measure: term frequency (tf) term frequency (tf) inverse document frequency (idf) inverse document frequency (idf)
8
tf x idf Normalize the term weights (so longer documents are not unfairly given more weight) Normalize the term weights (so longer documents are not unfairly given more weight)
9
tf x idf normalization Normalize the term weights (so longer documents are not unfairly given more weight) Normalize the term weights (so longer documents are not unfairly given more weight) normalize usually means force all values to fall within a certain range, usually between 0 and 1, inclusive. normalize usually means force all values to fall within a certain range, usually between 0 and 1, inclusive.
10
Vector Space Similarity Measure combine tf x idf into a similarity measure
11
Computing Similarity Scores 1.0 0.8 0.6 0.8 0.4 0.60.41.00.2
12
Documents in Vector Space t1t1 t2t2 t3t3 D1D1 D2D2 D 10 D3D3 D9D9 D4D4 D7D7 D8D8 D5D5 D 11 D6D6
13
Computing a similarity score
14
Similarity Measures Simple matching (coordination level match) Dice’s Coefficient Jaccard’s Coefficient Cosine Coefficient Overlap Coefficient
15
Problems with Vector Space There is no real theoretical basis for the assumption of a term space There is no real theoretical basis for the assumption of a term space it is more for visualization that having any real basis it is more for visualization that having any real basis most similarity measures work about the same regardless of model most similarity measures work about the same regardless of model Terms are not really orthogonal dimensions Terms are not really orthogonal dimensions Terms are not independent of all other terms Terms are not independent of all other terms
16
Probabilistic Models Rigorous formal model attempts to predict the probability that a given document will be relevant to a given query Rigorous formal model attempts to predict the probability that a given document will be relevant to a given query Ranks retrieved documents according to this probability of relevance (Probability Ranking Principle) Ranks retrieved documents according to this probability of relevance (Probability Ranking Principle) Relies on accurate estimates of probabilities for accurate results Relies on accurate estimates of probabilities for accurate results
17
Probabilistic Retrieval Goes back to 1960’s (Maron and Kuhns) Goes back to 1960’s (Maron and Kuhns) Robertson’s “Probabilistic Ranking Principle” Robertson’s “Probabilistic Ranking Principle” Retrieved documents should be ranked in decreasing probability that they are relevant to the user’s query. Retrieved documents should be ranked in decreasing probability that they are relevant to the user’s query. How to estimate these probabilities? How to estimate these probabilities? Several methods (Model 1, Model 2, Model 3) with different emphases on how estimates are done. Several methods (Model 1, Model 2, Model 3) with different emphases on how estimates are done.
18
Probabilistic Models: Some Notation D = All present and future documents D = All present and future documents Q = All present and future queries Q = All present and future queries (D i,Q j ) = A document query pair (D i,Q j ) = A document query pair x = class of similar documents, x = class of similar documents, y = class of similar queries, y = class of similar queries, Relevance is a relation: Relevance is a relation:
19
Probabilistic Models: Logistic Regression Probability of relevance is based on Logistic regression from a sample set of documents to determine values of the coefficients. At retrieval the probability estimate is obtained by: For the 6 X attribute measures shown next
20
Probabilistic Models: Logistic Regression attributes Average Absolute Query Frequency Query Length Average Absolute Document Frequency Document Length Average Inverse Document Frequency Inverse Document Frequency Number of Terms in common between query and document -- logged
21
Probabilistic Models: Logistic Regression Estimates for relevance based on log-linear model with various statistical measures of document content as independent variables. Estimates for relevance based on log-linear model with various statistical measures of document content as independent variables. Log odds of relevance is a linear function of attributes: Term contributions summed: Probability of Relevance is inverse of log odds:
22
Probabilistic Models Strong theoretical basis Strong theoretical basis In principle should supply the best predictions of relevance given available information In principle should supply the best predictions of relevance given available information Can be implemented similarly to Vector Can be implemented similarly to Vector Relevance information is required -- or is “guestimated” Relevance information is required -- or is “guestimated” Important indicators of relevance may not be term -- though terms only are usually used Important indicators of relevance may not be term -- though terms only are usually used Optimally requires on- going collection of relevance information Optimally requires on- going collection of relevance information AdvantagesDisadvantages
23
Vector and Probabilistic Models Support “natural language” queries Support “natural language” queries Treat documents and queries the same Treat documents and queries the same Support relevance feedback searching Support relevance feedback searching Support ranked retrieval Support ranked retrieval Differ primarily in theoretical basis and in how the ranking is calculated Differ primarily in theoretical basis and in how the ranking is calculated Vector assumes relevance Vector assumes relevance Probabilistic relies on relevance judgments or estimates Probabilistic relies on relevance judgments or estimates
24
Simple Presentation of Results Order by similarity Order by similarity Decreased order of presumed relevance Decreased order of presumed relevance Items retrieved early in search may help generate feedback by relevance feedback Items retrieved early in search may help generate feedback by relevance feedback Select top k documents Select top k documents Select documents within of query Select documents within of query
25
Problems with Vector Space There is no real theoretical basis for the assumption of a term space There is no real theoretical basis for the assumption of a term space it is more for visualization that having any real basis it is more for visualization that having any real basis most similarity measures work about the same regardless of model most similarity measures work about the same regardless of model Terms are not really orthogonal dimensions Terms are not really orthogonal dimensions Terms are not independent of all other terms Terms are not independent of all other terms
26
Evaluation Relevance Relevance Evaluation of IR Systems Evaluation of IR Systems Precision vs. Recall Precision vs. Recall Cutoff Points Cutoff Points Test Collections/TREC Test Collections/TREC Blair & Maron Study Blair & Maron Study
27
What to Evaluate? How much learned about the collection? How much learned about the collection? How much learned about a topic? How much learned about a topic? How much of the information need is satisfied? How much of the information need is satisfied? How inviting the system is? How inviting the system is?
28
What to Evaluate? What can be measured that reflects users’ ability to use system? (Cleverdon 66) What can be measured that reflects users’ ability to use system? (Cleverdon 66) Coverage of Information Coverage of Information Form of Presentation Form of Presentation Effort required/Ease of Use Effort required/Ease of Use Time and Space Efficiency Time and Space Efficiency Recall Recall proportion of relevant material actually retrieved proportion of relevant material actually retrieved Precision Precision proportion of retrieved material actually relevant proportion of retrieved material actually relevant effectiveness
29
Relevance In what ways can a document be relevant to a query? In what ways can a document be relevant to a query? Answer precise question precisely. Answer precise question precisely. Partially answer question. Partially answer question. Suggest a source for more information. Suggest a source for more information. Give background information. Give background information. Remind the user of other knowledge. Remind the user of other knowledge. Others... Others...
30
Standard IR Evaluation Precision Precision Recall Recall Collection # relevant in collection # retrieved # relevant retrieved Retrieved Documents
31
Precision/Recall Curves There is a tradeoff between Precision and Recall There is a tradeoff between Precision and Recall So measure Precision at different levels of Recall So measure Precision at different levels of Recall precision recall x x x x
32
Precision/Recall Curves Difficult to determine which of these two hypothetical results is better: Difficult to determine which of these two hypothetical results is better: precision recall x x x x
33
Precision/Recall Curves
34
Document Cutoff Levels Another way to evaluate: Another way to evaluate: Fix the number of documents retrieved at several levels: Fix the number of documents retrieved at several levels: top 5, top 10, top 20, top 50, top 100, top 500 top 5, top 10, top 20, top 50, top 100, top 500 Measure precision at each of these levels Measure precision at each of these levels Take (weighted) average over results Take (weighted) average over results This is a way to focus on high precision This is a way to focus on high precision
35
The E-Measure Combine Precision and Recall into one number (van Rijsbergen 79) P = precision R = recall b = measure of relative importance of P or R For example, b = 0.5 means user is twice as interested in precision as recall
36
TREC Text REtrieval Conference/Competition Text REtrieval Conference/Competition Run by NIST (National Institute of Standards & Technology) Run by NIST (National Institute of Standards & Technology) 1997 was the 6th year 1997 was the 6th year Collection: 3 Gigabytes, >1 Million Docs Collection: 3 Gigabytes, >1 Million Docs Newswire & full text news (AP, WSJ, Ziff) Newswire & full text news (AP, WSJ, Ziff) Government documents (federal register) Government documents (federal register) Queries + Relevance Judgments Queries + Relevance Judgments Queries devised and judged by “Information Specialists” Queries devised and judged by “Information Specialists” Relevance judgments done only for those documents retrieved -- not entire collection! Relevance judgments done only for those documents retrieved -- not entire collection! Competition Competition Various research and commercial groups compete Various research and commercial groups compete Results judged on precision and recall, going up to a recall level of 1000 documents Results judged on precision and recall, going up to a recall level of 1000 documents
37
Sample TREC queries (topics) Number: 168 Topic: Financing AMTRAK Description: A document will address the role of the Federal Government in financing the operation of the National Railroad Transportation Corporation (AMTRAK) Narrative: A relevant document must provide information on the government’s responsibility to make AMTRAK an economically viable entity. It could also discuss the privatization of AMTRAK as an alternative to continuing government subsidies. Documents comparing government subsidies given to air and bus transportation with those provided to aMTRAK would also be relevant.
38
TREC Benefits: Benefits: made research systems scale to large collections (pre-WWW) made research systems scale to large collections (pre-WWW) allows for somewhat controlled comparisons allows for somewhat controlled comparisons Drawbacks: Drawbacks: emphasis on high recall, which may be unrealistic for what most users want emphasis on high recall, which may be unrealistic for what most users want very long queries, also unrealistic very long queries, also unrealistic comparisons still difficult to make, because systems are quite different on many dimensions comparisons still difficult to make, because systems are quite different on many dimensions focus on batch ranking rather than interaction focus on batch ranking rather than interaction no focus on the WWW no focus on the WWW
39
TREC Results Differ each year Differ each year For the main track: For the main track: Best systems not statistically significantly different Best systems not statistically significantly different Small differences sometimes have big effects Small differences sometimes have big effects how good was the hyphenation model how good was the hyphenation model how was document length taken into account how was document length taken into account Systems were optimized for longer queries and all performed worse for shorter, more realistic queries Systems were optimized for longer queries and all performed worse for shorter, more realistic queries Excitement is in the new tracks Excitement is in the new tracks Interactive Interactive Multilingual Multilingual NLP NLP
40
Blair and Maron 1985 Highly influential paper Highly influential paper A classic study of retrieval effectiveness A classic study of retrieval effectiveness earlier studies were on unrealistically small collections earlier studies were on unrealistically small collections Studied an archive of documents for a legal suit Studied an archive of documents for a legal suit ~350,000 pages of text ~350,000 pages of text 40 queries 40 queries focus on high recall focus on high recall Used IBM’s STAIRS full-text system Used IBM’s STAIRS full-text system Main Result: System retrieved less than 20% of the relevant documents for a particular information needs when lawyers thought they had 75% Main Result: System retrieved less than 20% of the relevant documents for a particular information needs when lawyers thought they had 75% But many queries had very high precision But many queries had very high precision
41
Blair and Maron, cont. Why recall was low Why recall was low users can’t foresee exact words and phrases that will indicate relevant documents users can’t foresee exact words and phrases that will indicate relevant documents “accident” referred to by those responsible as: “accident” referred to by those responsible as: “event,” “incident,” “situation,” “problem,” … differing technical terminology differing technical terminology slang, misspellings slang, misspellings Perhaps the value of higher recall decreases as the number of relevant documents grows, so more detailed queries were not attempted once the users were satisfied Perhaps the value of higher recall decreases as the number of relevant documents grows, so more detailed queries were not attempted once the users were satisfied
42
Blair and Maron, cont. Why recall was low Why recall was low users can’t foresee exact words and phrases that will indicate relevant documents users can’t foresee exact words and phrases that will indicate relevant documents “accident” referred to by those responsible as: “accident” referred to by those responsible as: “event,” “incident,” “situation,” “problem,” … differing technical terminology differing technical terminology slang, misspellings slang, misspellings Perhaps the value of higher recall decreases as the number of relevant documents grows, so more detailed queries were not attempted once the users were satisfied Perhaps the value of higher recall decreases as the number of relevant documents grows, so more detailed queries were not attempted once the users were satisfied
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.