1 / 22

Language Models

Language Models. Naama Kraus. Slides are based on Introduction to Information Retrieval Book by Manning, Raghavan and Schütze. IR approaches. Boolean retrieval Boolean constrains of term occurrences in documents no ranking Vector space model

jamil
Download Presentation

Language Models

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Language Models Naama Kraus Slides are based on Introduction to Information Retrieval Book by Manning, Raghavan and Schütze

  2. IR approaches • Boolean retrieval • Boolean constrains of term occurrences in documents • no ranking • Vector space model • Queries and vectors are represented as vectors in a high dimensional space • Notions of similarity (cosine similarity) implying ranking • Probabilistic model • Rank documents by the probability P(R|d,q) • Estimate P(R|d,q) using relevance feedback technique • Language Models – today’s class

  3. Intuition • Users who try to think of a good query, think of words that are likely to appear in relevant documents • Language model approach: • A document is a good match to a query, if the document model is likely to generate the query • If document contains query words often

  4. Illustration Language Model query document

  5. Traditional language model • Finite automata • Generative model I wish I wish I wish I wish I wish I wish …… I wish The language of the automaton: the full set of strings that it can generate

  6. Probabilistic language model • Each node has a probability distribution over generating different terms • A language model is a function that puts a probability measure over strings drawn from some vocabulary

  7. Language model example state emission probabilities (partial) the 0.2 a 0.1 frog 0.01 toad 0.01 said 0.03 likes 0.02 that 0.04 ….. STOP 0.2 s unigram language model Probability that some text (e.g. a query) was generated by the model: P(frog said that toad likes frog) = 0.01 x 0.03 x 0.04 x 0.01 x 0.02 x 0.01 (We ignore continue/stop probabilities assuming they are fixed for all queries)

  8. Query likelihood q = frog likes toad P(q | M1) = 0.01 x 0.02 x 0.01 P(q | M2) = 0.0002 x 0.04 x 0.0001 P(q|M1) > P(q|M2) => M1 is more likely to generate query q

  9. Types of language models • How do we build probabilities over sequence of terms? • P(t1 t2 t3 t4) = P(t1) x P(t2|t1) x P(t3|t1 t2) x P(t4|t1 t2 t3) • Unigram language model – most simplest ; no conditioning context • P(t1 t2 t3 t4) = P(t1) x P(t2) x P(t3) x P(t4) • Bigram language model – condition on previous term • P(t1 t2 t3 t4) = P(t1) x P(t2|t1) x P(t3|t2) x P(t4|t3) • Trigramlanguage model … • Unigram model is the most common in IR • Often sufficient to judge the topic of a document • Data sparseness issues when using richer models • Simple and efficient implementation

  10. The query likelihood model • Goal: rank documents by P(d|q) • The probability that a user querying q, had the document d in mind • Bayes Rule: P(d|q) = P(q|d)P(d)/P(q) • P(q) – same for all documents  ignored • P(d) – often treated as uniform across documents  ignored • Could be non uniform prior based on criteria like authority, length, genre, newness … •  Rank by P(q|d)

  11. The query likelihood model (2) • P(q|d) - the probability that a query q was generated by a language model derived from document d • The probability that a query would be observed as a random sample from the respective document model • Algorithm: • Infer a LM Md for each document d • Estimate P(q|Md) • Rank the documents according to these probabilities

  12. Illustration Md1 d1 P(q|Md1) query P(q|Md2) Md2 d2 P(q|Md3) Md3 d3 E.g., P(q|Md3) > P(q|Md1) > P(q|Md2) d3 is first, d1 is second, d2 is third

  13. Estimating P(q|Md) Use Maximum Likelihood Estimation - MLE Assume a unigram language model (terms occur independently) unigram MLE

  14. Sparse data problem • Documents are sparse • Some words don’t appear in the document • In particular, some of the query terms •  P(q|d) = 0 ; zero probability problem • Conjunctive semantics • Occurring words are poorly estimated • A single documents is small training set • Occurring words are over estimated • Their occurrence was partly by chance

  15. Solution: smoothing • Smooth probabilities in LMs • overcome zero probabilities • give some probability mass to unseen words • The probability of a non occurring term should be close to its probability to occur in the collection P(t|Mc) = cf(t)/T • cf(t) = #occurrences of term t in the collection • T– length of the collection = sum of all document lengths

  16. Smoothing methods Linear Interpolation Bayesian smoothing Summary, with linear interpolation In practice, log in taken from both sides of the equation to avoid multiplying many small numbers

  17. Exercise Given a collection of two documents D1 , D2 D1: Xyzzy reports a profit but revenue is down D2:Quorus narrows quarter loss but revenue decreases further A user submitted the query: “revenue down” Rank D1 and D2 - Use an MLE unigram model and a linear interpolation smoothing with lambda parameter 0.5

  18. Extended LM approaches query query model P(t|query) query likelihood model comparison document likelihood document Document model P(t|document) Query likelihood P(q|d) – the probability of document LM to generate query we’ve seen in previous slides … Document likelihood P(d|q) – the probability of query LM to generate document in the next slides … Model comparison R(d;q) – compare between document and query models in the next slides …

  19. Document likelihood model • P(d|q) – the probability of query LM to generate document • Problem: queries are short  bad model estimation • [Zhai and Lafferty 2001] • Expand the query with terms taken from relevant documents in the usual way and hence update the language mode

  20. KL divergence • Kullback–Leibler (KL) divergence • An asymmetric divergence measure from information theory • Measures the difference between two probability distributions P , Q • Typically Q is an estimation of P • Properties • Non negative • Equals 0 iff P equals Q • May have an infinite value • Asymmetric, thus not a metric • Jensen–Shannon (JS) divergence • Based on KL divergence (D) • Always finite • 0 <= JSD <= 1 • Symmetric

  21. Model comparison Make LM from both query and document Measure `how different` these LMs from each other  Use KL divergence Rank by KLD - the closer to 0 the higher is the rank

  22. Language models - summary • Probabilistic model • mathematically precise • Intuitive, simple concept • Achieves very good retrieval results • Still, no evidence that it exceeds the traditional vector space model • Relation to the Vector Space Model • Both use term frequency • Smoothing with collection generation probability is a little like idf • Terms rare in the general collection but common in some documents will have a greater influence on the document’s ranking • Probabilistic vs. geometric • Mathematical mode vs. heuristic model

More Related