Presentation is loading. Please wait.

Presentation is loading. Please wait.

Dictionary search Making one-side errors Paper on Bloom Filter.

Similar presentations


Presentation on theme: "Dictionary search Making one-side errors Paper on Bloom Filter."— Presentation transcript:

1 Dictionary search Making one-side errors Paper on Bloom Filter

2 Crawling How to keep track of the URLs visited by a crawler? URLs are long Check should be very fast No care about small errors (≈ page not crawled) Bloom Filter over crawled URLs

3 Searching with errors...

4

5

6 Problem: false positives

7 TTT 2

8 Not perfectly true but...

9 m/n = 8 Opt k = 5.45... We do have an explicit formula for the optimal k

10

11

12 Document ranking Paolo Ferragina Dipartimento di Informatica Università di Pisa

13 The big fight: find the best ranking...

14 Ranking: Google vs Google.cn

15 Document ranking Text-based Ranking (1° generation) Reading 6.2 and 6.3

16 Similarity between binary vectors Document is binary vector X,Y in {0,1} D Score: overlap measure What’s wrong ?

17 Normalization Dice coefficient (wrt avg #terms) : Jaccard coefficient (wrt possible terms) : OK, triangular NO, triangular

18 What’s wrong in doc-similarity ? Overlap matching doesn’t consider: Term frequency in a document Talks more of t ? Then t should be weighted more. Term scarcity in collection of commoner than baby bed Length of documents score should be normalized

19 A famous “weight”: tf-idf Number of occurrences of term t in doc d tf t,d where n t = #docs containing term t n = #docs in the indexed collection log n n idf t t         Vector Space model

20 Why distance is a bad idea Sec. 6.3

21 A graphical example Postulate: Documents that are “close together” in the vector space talk about the same things. Euclidean distance sensible to vector length !! t1t1 d2d2 d1d1 d3d3 d4d4 d5d5 t3t3 t2t2  cos(  ) = v  w / ||v|| * ||w|| The user query is a very short doc Easy to Spam Sophisticated algos to find top-k docs for a query Q

22 cosine(query,document) Dot product q i is the tf-idf weight of term i in the query d i is the tf-idf weight of term i in the document cos(q,d) is the cosine similarity of q and d … or, equivalently, the cosine of the angle between q and d. Sec. 6.3

23 Cos for length-normalized vectors For length-normalized vectors, cosine similarity is simply the dot product (or scalar product): for q, d length-normalized.

24 Cosine similarity among 3 docs termSaSPaPWH affection1155820 jealous10711 gossip206 wuthering0038 How similar are the novels SaS: Sense and Sensibility PaP: Pride and Prejudice, and WH: Wuthering Heights? Term frequencies (counts) Note: To simplify this example, we don’t do idf weighting.

25 3 documents example contd. Log frequency weighting termSaSPaPWH affection3.062.762.30 jealous2.001.852.04 gossip1.3001.78 wuthering002.58 After length normalization termSaSPaPWH affection0.7890.8320.524 jealous0.5150.5550.465 gossip0.33500.405 wuthering000.588 cos(SaS,PaP) ≈ 0.789 × 0.832 + 0.515 × 0.555 + 0.335 × 0.0 + 0.0 × 0.0 ≈ 0.94 cos(SaS,WH) ≈ 0.79 cos(PaP,WH) ≈ 0.69

26 Storage For every term, we store the IDF in memory, in terms of n t, which is actually the length of its posting list (so anyway needed). For every docID d in the posting list of term t, we store its frequency tf t,d which is tipically small and thus stored with unary/gamma. Sec. 7.1.2

27 Vector spaces and other operators Vector space OK for bag-of-words queries Clean metaphor for similar-document queries Not a good combination with operators: Boolean, wild-card, positional, proximity First generation of search engines Invented before “spamming” web search

28 Document ranking Top-k retrieval Reading 7

29 Speed-up top-k retrieval Costly is the computation of the cos Find a set A of contenders, with K < |A| << N Set A does not necessarily contain the top K, but has many docs from among the top K Return the top K docs in A, according to the score The same approach is also used for other (non- cosine) scoring functions Will look at several schemes following this approach Sec. 7.1.1

30 Possible Approaches Consider docs containing at least one query term. Hence this means… Take this further: 1. Only consider high-idf query terms 2. Champion lists: top scores 3. Only consider docs containing many query terms 4. Fancy hits: sophisticated ranking functions 5. Clustering Sec. 7.1.2

31 Approach #1: High-idf query terms only For a query such as catcher in the rye Only accumulate scores from catcher and rye Intuition: in and the contribute little to the scores and so don’t alter rank-ordering much Benefit: Postings of low-idf terms have many docs  these (many) docs get eliminated from set A of contenders Sec. 7.1.2

32 Approach #2: Champion Lists Preprocess: Assign to each term, its m best documents Search: If |Q| = q terms, merge their preferred lists (  mq answers). Compute COS between Q and these docs, and choose the top k. Need to pick m>k to work well empirically. Now SE use tf-idf PLUS PageRank (PLUS other weights)

33 Approach #3: Docs containing many query terms For multi-term queries, compute scores for docs containing several of the query terms Say, at least 3 out of 4 Imposes a “soft conjunction” on queries seen on web search engines (early Google) Easy to implement in postings traversal

34 3 of 4 query terms Brutus Caesar Calpurnia 12358132134 248163264128 1316 Antony 348163264128 32 Scores only computed for docs 8, 16 and 32. Sec. 7.1.2

35 Complex scores Consider a simple total score combining cosine relevance and authority net-score(q,d) = PR(d) + cosine(q,d) Can use some other linear combination than an equal weighting Now we seek the top K docs by net score Sec. 7.1.4

36 Approach #4: Fancy-hits heuristic Preprocess: Assign docID by decreasing PR weight Define FH(t) = m docs for t with highest tf-idf weight Define IL(t) = the rest (i.e. incr docID = decr PR weight) Idea: a document that scores high should be in FH or in the front of IL Search for a t-term query: First FH: Take the common docs of their FH compute the score of these docs and keep the top-k docs. Then IL: scan ILs and check the common docs Compute the score and possibly insert them into the top-k. Stop when M docs have been checked or the PR score becomes smaller than some threshold.

37 Approach #5: Clustering Query LeaderFollower Sec. 7.1.6

38 Cluster pruning: preprocessing Pick  N docs at random: call these leaders For every other doc, pre-compute nearest leader Docs attached to a leader: its followers; Likely: each leader has ~  N followers. Sec. 7.1.6

39 Cluster pruning: query processing Process a query as follows: Given query Q, find its nearest leader L. Seek K nearest docs from among L’s followers. Sec. 7.1.6

40 Why use random sampling Fast Leaders reflect data distribution Sec. 7.1.6

41 General variants Have each follower attached to b 1 =3 (say) nearest leaders. From query, find b 2 =4 (say) nearest leaders and their followers. Can recur on leader/follower construction. Sec. 7.1.6

42 Document ranking Relevance feedback Reading 9

43 Relevance Feedback Relevance feedback: user feedback on relevance of docs in initial set of results User issues a (short, simple) query The user marks some results as relevant or non-relevant. The system computes a better representation of the information need based on feedback. Relevance feedback can go through one or more iterations. Sec. 9.1

44 Rocchio (SMART) Used in practice: D r = set of known relevant doc vectors D nr = set of known irrelevant doc vectors q m = modified query vector; q 0 = original query vector; α, β, γ : weights (hand-chosen or set empirically) New query moves toward relevant documents and away from irrelevant documents Sec. 9.1.1

45 Relevance Feedback: Problems Users are often reluctant to provide explicit feedback It’s often harder to understand why a particular document was retrieved after applying relevance feedback There is no clear evidence that relevance feedback is the “best use” of the user’s time.

46 Pseudo relevance feedback Pseudo-relevance feedback automates the “manual” part of true relevance feedback. Retrieve a list of hits for the user’s query Assume that the top k are relevant. Do relevance feedback (e.g., Rocchio) Works very well on average But can go horribly wrong for some queries. Several iterations can cause query drift. Sec. 9.1.6

47 Query Expansion In relevance feedback, users give additional input (relevant/non-relevant) on documents, which is used to reweight terms in the documents In query expansion, users give additional input (good/bad search term) on words or phrases Sec. 9.2.2

48 How augment the user query? Manual thesaurus (costly to generate) E.g. MedLine: physician, syn: doc, doctor, MD Global Analysis (static; all docs in collection) Automatically derived thesaurus (co-occurrence statistics) Refinements based on query-log mining Common on the web Local Analysis (dynamic) Analysis of documents in result set Sec. 9.2.2

49 Query assist Would you expect such a feature to increase the query volume at a search engine?

50 Quality of a search engine Paolo Ferragina Dipartimento di Informatica Università di Pisa Reading 8

51 Is it good ? How fast does it index Number of documents/hour (Average document size) How fast does it search Latency as a function of index size Expressiveness of the query language

52 Measures for a search engine All of the preceding criteria are measurable The key measure: user happiness …useless answers won’t make a user happy

53 Happiness: elusive to measure Commonest approach is given by the relevance of search results How do we measure it ? Requires 3 elements: 1.A benchmark document collection 2.A benchmark suite of queries 3.A binary assessment of either Relevant or Irrelevant for each query-doc pair

54 Evaluating an IR system Standard benchmarks TREC: National Institute of Standards and Testing (NIST) has run large IR testbed for many years Other doc collections: marked by human experts, for each query and for each doc, Relevant or Irrelevant  On the Web everything is more complicated since we cannot mark the entire corpus !!

55 General scenario Relevant Retrieved collection

56 Precision: % docs retrieved that are relevant [issue “junk” found] Precision vs. Recall Relevant Retrieved collection Recall: % docs relevant that are retrieved [issue “info” found]

57 How to compute them Precision: fraction of retrieved docs that are relevant Recall: fraction of relevant docs that are retrieved Precision P = tp/(tp + fp) Recall R = tp/(tp + fn) RelevantNot Relevant Retrievedtp (true positive) fp (false positive) Not Retrievedfn (false negative) tn (true negative)

58 Some considerations Can get high recall (but low precision) by retrieving all docs for all queries! Recall is a non-decreasing function of the number of docs retrieved Precision usually decreases

59 Precision-Recall curve We measures Precision at various levels of Recall Note: it is an AVERAGE over many queries precision recall x x x x

60 A common picture precision recall x x x x

61 F measure Combined measure (weighted harmonic mean) : People usually use balanced F 1 measure i.e., with  = ½ thus 1/F = ½ (1/P + 1/R) Use this if you need to optimize a single measure that balances precision and recall.

62 Recommendation systems Paolo Ferragina Dipartimento di Informatica Università di Pisa

63 Recommendations We have a list of restaurants with  and  ratings for some Which restaurant(s) should I recommend to Dave?

64 Basic Algorithm Recommend the most popular restaurants say # positive votes minus # negative votes What if Dave does not like Spaghetti?

65 Smart Algorithm Basic idea: find the person “most similar” to Dave according to cosine-similarity (i.e. Estie), and then recommend something this person likes. Perhaps recommend Straits Cafe to Dave  Do you want to rely on one person’s opinions?

66 A glimpse on XML retrieval Paolo Ferragina Dipartimento di Informatica Università di Pisa Reading 10

67 What is XML? eXtensible Markup Language A framework for defining markup languages No fixed collection of markup tags Each XML language targeted for application

68 XML vs HTML HTML is a markup language for a specific purpose (display in browsers) XML is a framework for defining markup languages HTML can be formalized as an XML language (XHTML) XML defines logical structure only HTML: same intention, but has evolved into a presentation language

69 XML Example (visual)

70 XML Example (textual) FileCab This chapter describes the commands that manage the FileCab inet application.

71 Basic Structure An XML document is an ordered, labeled tree character data: leaf nodes contain the actual data (text strings) element nodes: each labeled with a name (often called the element type), and a set of attributes, each consisting of a name and a value, can have child nodes

72 XML: Design Goals Separate syntax from semantics to provide a common framework for structuring information Allow tailor-made markup for any imaginable application domain Support internationalization (Unicode) and platform independence Be the future of (semi)structured information (do some of the work now done by databases)

73 Why Use XML? Represent semi-structured data (data that are structured, but don’t fit relational model) XML is more flexible than DBs XML is more structured than simple IR You get a massive infrastructure for free

74 XML Schemas Schema = syntax definition of XML language Schema language = formal language for expressing XML schemas Examples Document Type Definition XML Schema (W3C) Relevance for XML IR Our job is much easier if we have a (one) schema

75 XML Indexing and Search Most native XML databases have taken a DB approach Exact match Evaluate path expressions No IR type relevance ranking Only a few that focus on relevance ranking

76 Data vs. Text-centric XML Data-centric XML: used for messaging between enterprise applications Mainly a recasting of relational data Text-centric XML: used for annotating content Rich in text Demands good integration of text retrieval functionality E.g., find me the ISBN #s of Book s with at least three Chapter s discussing cocoa production, ranked by Price

77 IR XML Challenges There is no document unit in XML How do we compute tf and idf? Indexing granularity Need to go to document for retrieving/displaying fragment E.g., give me the Abstract s of Paper s on existentialism Where do you retrieve the Abstract from? Need to identify similar elements in different schemas Example: employee

78 IR XML Challenges: XQuery SQL for XML Usage scenarios Human-readable documents Data-oriented documents Mixed documents (e.g., patient records) Relies on XPath XML Schema datatypes

79 Queries Supported by XQuery Simple attribute/value /play/title contains “hamlet” Path queries title contains “hamlet” /play//title contains “hamlet” Complex graphs Employees with two managers What about relevance ranking?

80 Data structures for XML retrieval What are the primitives we need? Inverted index: give me all elements matching text query Q We know how to do this – treat each element as a document Give me all elements below any instance of the Book element (Parent/child relationship is not enough)

81 Positional containment Doc:1 27112220335790 Play 431867 Verse Term:droppeth 720 droppeth under Verse under Play. Containment can be viewed as merging postings.

82 Summary of data structures Path containment etc. can essentially be solved by positional inverted indexes Retrieval consists of “merging” postings All the compression tricks are still applicable Complications arise from insertion/deletion of elements, text within elements Beyond the scope of this course


Download ppt "Dictionary search Making one-side errors Paper on Bloom Filter."

Similar presentations


Ads by Google