Language Models Hongning Wang CS@UVa.

Slides:



Advertisements
Similar presentations
Information Retrieval and Organisation Chapter 12 Language Models for Information Retrieval Dell Zhang Birkbeck, University of London.
Advertisements

Language Models Naama Kraus (Modified by Amit Gross) Slides are based on Introduction to Information Retrieval Book by Manning, Raghavan and Schütze.
Statistical Translation Language Model Maryam Karimzadehgan University of Illinois at Urbana-Champaign 1.
1 Language Models for TR (Lecture for CS410-CXZ Text Info Systems) Feb. 25, 2011 ChengXiang Zhai Department of Computer Science University of Illinois,
INTRODUCTION TO MACHINE LEARNING Bayesian Estimation.
1 Essential Probability & Statistics (Lecture for CS598CXZ Advanced Topics in Information Retrieval ) ChengXiang Zhai Department of Computer Science University.
Probabilistic Ranking Principle
Information Retrieval Models: Probabilistic Models
Chapter 7 Retrieval Models.
1 Language Model CSC4170 Web Intelligence and Social Computing Tutorial 8 Tutor: Tom Chao Zhou
Introduction to Information Retrieval Introduction to Information Retrieval Hinrich Schütze and Christina Lioma Lecture 12: Language Models for IR.
Language Models for TR Rong Jin Department of Computer Science and Engineering Michigan State University.
Formal Multinomial and Multiple- Bernoulli Language Models Don Metzler.
. PGM: Tirgul 10 Parameter Learning and Priors. 2 Why learning? Knowledge acquisition bottleneck u Knowledge acquisition is an expensive process u Often.
Scalable Text Mining with Sparse Generative Models
Language Modeling Approaches for Information Retrieval Rong Jin.
Generating Impact-Based Summaries for Scientific Literature Qiaozhu Mei, ChengXiang Zhai University of Illinois at Urbana-Champaign 1.
Multi-Style Language Model for Web Scale Information Retrieval Kuansan Wang, Xiaolong Li and Jianfeng Gao SIGIR 2010 Min-Hsuan Lai Department of Computer.
Language Models for IR Debapriyo Majumdar Information Retrieval Indian Statistical Institute Kolkata Spring 2015 Credit for several slides to Jimmy Lin.
Topic Models in Text Processing IR Group Meeting Presented by Qiaozhu Mei.
IRDM WS Chapter 4: Advanced IR Models 4.1 Probabilistic IR 4.2 Statistical Language Models (LMs) Principles and Basic LMs Smoothing.
Language Models Hongning Wang Two-stage smoothing [Zhai & Lafferty 02] c(w,d) |d| P(w|d) = +  p(w|C) ++ Stage-1 -Explain unseen words -Dirichlet.
Bayesian Extension to the Language Model for Ad Hoc Information Retrieval Hugo Zaragoza, Djoerd Hiemstra, Michael Tipping Presented by Chen Yi-Ting.
A General Optimization Framework for Smoothing Language Models on Graph Structures Qiaozhu Mei, Duo Zhang, ChengXiang Zhai University of Illinois at Urbana-Champaign.
Empirical Research Methods in Computer Science Lecture 7 November 30, 2005 Noah Smith.
Relevance Feedback Hongning Wang What we have learned so far Information Retrieval User results Query Rep Doc Rep (Index) Ranker.
Probabilistic Ranking Principle Hongning Wang
LANGUAGE MODELS FOR RELEVANCE FEEDBACK Lee Won Hee.
Boolean Model Hongning Wang Abstraction of search engine architecture User Ranker Indexer Doc Analyzer Index results Crawler Doc Representation.
Language Models Hongning Wang Recap: document generation model 4501: Information Retrieval Model of relevant docs for Q Model of non-relevant.
Boolean Model Hongning Wang Abstraction of search engine architecture User Ranker Indexer Doc Analyzer Index results Crawler Doc Representation.
Positional Relevance Model for Pseudo–Relevance Feedback Yuanhua Lv & ChengXiang Zhai Department of Computer Science, UIUC Presented by Bo Man 2014/11/18.
Language Modeling Putting a curve to the bag of words Courtesy of Chris Jordan.
NTNU Speech Lab Dirichlet Mixtures for Query Estimation in Information Retrieval Mark D. Smucker, David Kulp, James Allan Center for Intelligent Information.
CpSc 881: Information Retrieval. 2 Using language models (LMs) for IR ❶ LM = language model ❷ We view the document as a generative model that generates.
Natural Language Processing Statistical Inference: n-grams
Information Retrieval Models: Vector Space Models
Relevance Feedback Hongning Wang
A Generation Model to Unify Topic Relevance and Lexicon-based Sentiment for Opinion Retrieval Min Zhang, Xinyao Ye Tsinghua University SIGIR
Introduction to Information Retrieval Introduction to Information Retrieval Lecture Probabilistic Information Retrieval.
1 Risk Minimization and Language Modeling in Text Retrieval ChengXiang Zhai Thesis Committee: John Lafferty (Chair), Jamie Callan Jaime Carbonell David.
A Study of Poisson Query Generation Model for Information Retrieval
Statistical Language Models Hongning Wang CS 6501: Text Mining1.
2010 © University of Michigan Probabilistic Models in Information Retrieval SI650: Information Retrieval Winter 2010 School of Information University of.
ECE 8443 – Pattern Recognition ECE 8527 – Introduction to Machine Learning and Pattern Recognition Objectives: Bayes Rule Mutual Information Conditional.
A Study of Smoothing Methods for Language Models Applied to Ad Hoc Information Retrieval Chengxiang Zhai, John Lafferty School of Computer Science Carnegie.
Language Modeling Again So are we smooth now? Courtesy of Chris Jordan.
Bayesian Extension to the Language Model for Ad Hoc Information Retrieval Hugo Zaragoza, Djoerd Hiemstra, Michael Tipping Microsoft Research Cambridge,
Essential Probability & Statistics
Oliver Schulte Machine Learning 726
Overview of Statistical Language Models
Information Retrieval Models: Language Models
Lecture 13: Language Models for IR
Statistical Language Models
Language Models for Text Retrieval
Bayes Net Learning: Bayesian Approaches
Information Retrieval Models: Probabilistic Models
Relevance Feedback Hongning Wang
Language Models for Information Retrieval
Murat Açar - Zeynep Çipiloğlu Yıldız
John Lafferty, Chengxiang Zhai School of Computer Science
Language Model Approach to IR
CS 4501: Information Retrieval
Probabilistic Ranking Principle
Topic Models in Text Processing
Language Models Hongning Wang
CS590I: Information Retrieval
INF 141: Information Retrieval
Conceptual grounding Nisheeth 26th March 2019.
Language Models for TR Rong Jin
Presentation transcript:

Language Models Hongning Wang CS@UVa

CS 6501: Information Retrieval Notion of Relevance Relevance (Rep(q), Rep(d)) Similarity P(r=1|q,d) r {0,1} Probability of Relevance P(d q) or P(q d) Probabilistic inference Generative Model Regression Model (Fox 83) Prob. concept space model (Wong & Yao, 95) Different inference system Inference network model (Turtle & Croft, 91) Different rep & similarity Vector space model (Salton et al., 75) Prob. distr. (Wong & Yao, 89) … Doc generation Query Classical prob. Model (Robertson & Sparck Jones, 76) LM approach (Ponte & Croft, 98) (Lafferty & Zhai, 01a) CS@UVa CS 6501: Information Retrieval

What is a statistical LM? A model specifying probability distribution over word sequences p(“Today is Wednesday”)  0.001 p(“Today Wednesday is”)  0.0000000000001 p(“The eigenvalue is positive”)  0.00001 It can be regarded as a probabilistic mechanism for “generating” text, thus also called a “generative” model CS@UVa CS 6501: Information Retrieval

CS 6501: Information Retrieval Why is a LM useful? Provides a principled way to quantify the uncertainties associated with natural language Allows us to answer questions like: Given that we see “John” and “feels”, how likely will we see “happy” as opposed to “habit” as the next word? (speech recognition) Given that we observe “baseball” three times and “game” once in a news article, how likely is it about “sports”? (text categorization, information retrieval) Given that a user is interested in sports news, how likely would the user use “baseball” in a query? (information retrieval) CS@UVa CS 6501: Information Retrieval

Source-Channel framework [Shannon 48] Transmitter (encoder) Noisy Channel Receiver (decoder) Destination X Y X’ P(X) P(X|Y)=? P(Y|X) (Bayes Rule) When X is text, p(X) is a language model Many Examples: Speech recognition: X=Word sequence Y=Speech signal Machine translation: X=English sentence Y=Chinese sentence OCR Error Correction: X=Correct word Y= Erroneous word Information Retrieval: X=Document Y=Query Summarization: X=Summary Y=Document CS@UVa CS 6501: Information Retrieval

Unigram language model Generate a piece of text by generating each word independently 𝑝(𝑤1 𝑤2 … 𝑤𝑛)=𝑝(𝑤1)𝑝(𝑤2)…𝑝(𝑤𝑛) 𝑠.𝑡. 𝑝 𝑤𝑖 𝑖=1 𝑁 , 𝑖 𝑝 𝑤 𝑖 =1 , 𝑝 𝑤 𝑖 ≥0 Essentially a multinomial distribution over the vocabulary The simplest and most popular choice! CS@UVa CS 6501: Information Retrieval

More sophisticated LMs N-gram language models In general, 𝑝(𝑤1 𝑤2 …𝑤𝑛)=𝑝(𝑤1)𝑝(𝑤2|𝑤1)…𝑝( 𝑤 𝑛 | 𝑤 1 … 𝑤 𝑛−1 ) n-gram: conditioned only on the past n-1 words E.g., bigram: 𝑝(𝑤1 … 𝑤𝑛)=𝑝(𝑤1)𝑝(𝑤2|𝑤1) 𝑝(𝑤3|𝑤2) …𝑝( 𝑤 𝑛 | 𝑤 𝑛−1 ) Remote-dependence language models (e.g., Maximum Entropy model) Structured language models (e.g., probabilistic context-free grammar) CS@UVa CS 6501: Information Retrieval

Why just unigram models? Difficulty in moving toward more complex models They involve more parameters, so need more data to estimate They increase the computational complexity significantly, both in time and space Capturing word order or structure may not add so much value for “topical inference” But, using more sophisticated models can still be expected to improve performance ... CS@UVa CS 6501: Information Retrieval

Generative view of text documents (Unigram) Language Model  p(w| ) Sampling Document … text 0.2 mining 0.1 assocation 0.01 clustering 0.02 food 0.00001 Text mining document Topic 1: Text mining … text 0.01 food 0.25 nutrition 0.1 healthy 0.05 diet 0.02 Food nutrition document Topic 2: Health CS@UVa CS 6501: Information Retrieval

Estimation of language models Maximum likelihood estimation Unigram Language Model  p(w| )=? Estimation Document … text ? mining ? assocation ? database ? query ? text 10 mining 5 association 3 database 3 algorithm 2 … query 1 efficient 1 10/100 5/100 3/100 1/100 A “text mining” paper (total #words=100) CS@UVa CS 6501: Information Retrieval

Language models for IR [Ponte & Croft SIGIR’98] Document Language Model … text ? mining ? assocation ? clustering ? food ? nutrition ? healthy ? diet ? “data mining algorithms” Query Text mining paper ? Which model would most likely have generated this query? Food nutrition paper CS@UVa CS 6501: Information Retrieval

Ranking docs by query likelihood dN Doc LM …… q p(q| d1) p(q| d2) p(q| dN) Query likelihood d1 d2 …… dN Justification: PRP CS@UVa CS 6501: Information Retrieval

Justification from PRP Query generation Query likelihood p(q| d) Document prior Assuming uniform document prior, we have CS@UVa CS 6501: Information Retrieval

Retrieval as language model estimation Document ranking based on query likelihood Retrieval problem  Estimation of 𝑝(𝑤𝑖|𝑑) Common approach Maximum likelihood estimation (MLE) Document language model CS@UVa CS 6501: Information Retrieval

CS 6501: Information Retrieval Problem with MLE What probability should we give a word that has not been observed in the document? log0? If we want to assign non-zero probabilities to such words, we’ll have to discount the probabilities of observed words This is so-called “smoothing” CS@UVa CS 6501: Information Retrieval

General idea of smoothing All smoothing methods try to Discount the probability of words seen in a document Re-allocate the extra counts such that unseen words will have a non-zero count CS@UVa CS 6501: Information Retrieval

Illustration of language model smoothing P(w|d) w Max. Likelihood Estimate Smoothed LM Discount from the seen words Assigning nonzero probabilities to the unseen words CS@UVa CS 6501: Information Retrieval

CS 6501: Information Retrieval Smoothing methods Method 1: Additive smoothing Add a constant  to the counts of each word Problems? Hint: all words are equally important? Counts of w in d “Add one”, Laplace smoothing Vocabulary size Length of d (total counts) CS@UVa CS 6501: Information Retrieval

Refine the idea of smoothing Should all unseen words get equal probabilities? We can use a reference model to discriminate unseen words Discounted ML estimate Reference language model CS@UVa CS 6501: Information Retrieval

Smoothing methods (cont) Method 2: Absolute discounting Subtract a constant  from the counts of each word Problems? Hint: varied document length? # uniq words CS@UVa CS 6501: Information Retrieval

Smoothing methods (cont) Method 3: Linear interpolation, Jelinek-Mercer “Shrink” uniformly toward p(w|REF) Problems? Hint: what is missing? MLE parameter CS@UVa CS 6501: Information Retrieval

Smoothing methods (cont) Method 4: Dirichlet Prior/Bayesian Assume pseudo counts p(w|REF) Problems? parameter CS@UVa CS 6501: Information Retrieval

Dirichlet prior smoothing likelihood of doc given the model Bayesian estimator Posterior of LM: 𝑝 𝜃 𝑑 ∝𝑝 𝑑 𝜃 𝑝(𝜃) Conjugate prior Posterior will be in the same form as prior Prior can be interpreted as “extra”/“pseudo” data Dirichlet distribution is a conjugate prior for multinomial distribution prior over models “extra”/“pseudo” word counts, we set i= p(wi|REF) CS@UVa CS 6501: Information Retrieval

Some background knowledge Conjugate prior Posterior dist in the same family as prior Dirichlet distribution Continuous Samples from it will be the parameters in a multinomial distribution Gaussian -> Gaussian Beta -> Binomial Dirichlet -> Multinomial CS@UVa CS 6501: Information Retrieval

Dirichlet prior smoothing (cont) Posterior distribution of parameters: The predictive distribution is the same as the mean: Dirichlet prior smoothing CS@UVa CS 6501: Information Retrieval

Estimating  using leave-one-out [Zhai & Lafferty 02] w1 log-likelihood Maximum Likelihood Estimator Leave-one-out P(w1|d- w1) w2 P(w2|d- w2) P(wn|d- wn) wn ... CS@UVa CS 6501: Information Retrieval

Why would “leave-one-out” work? 20 word by author1 abc abc ab c d d abc cd d d abd ab ab ab ab cd d e cd e Now, suppose we leave “e” out…  must be big! more smoothing  doesn’t have to be big 20 word by author2 abc abc ab c d d abe cb e f acf fb ef aff abef cdc db ge f s The amount of smoothing is closely related to the underlying vocabulary size CS@UVa CS 6501: Information Retrieval

Understanding smoothing Content words Query = “the algorithms for data mining” pML(w|d1): 0.04 0.001 0.02 0.002 0.003 pML(w|d2): 0.02 0.001 0.01 0.003 0.004 4.8× 10 −12 2.4× 10 −12 p( “algorithms”|d1) = p(“algorithm”|d2) p( “data”|d1) < p(“data”|d2) p( “mining”|d1) < p(“mining”|d2) Intuitively, d2 should have a higher score, but p(q|d1)>p(q|d2)… So we should make p(“the”) and p(“for”) less different for all docs, and smoothing helps to achieve this goal… 2.35× 10 −13 4.53× 10 −13 Query = “the algorithms for data mining” P(w|REF) 0.2 0.00001 0.2 0.00001 0.00001 Smoothed p(w|d1): 0.184 0.000109 0.182 0.000209 0.000309 Smoothed p(w|d2): 0.182 0.000109 0.181 0.000309 0.000409 CS@UVa CS 6501: Information Retrieval

Understanding smoothing Plug in the general smoothing scheme to the query likelihood retrieval formula, we obtain Doc length normalization (longer doc is expected to have a smaller d) TF weighting Ignore for ranking IDF weighting Smoothing with p(w|C)  TF-IDF + doc-length normalization CS@UVa CS 6501: Information Retrieval

Smoothing & TF-IDF weighting Smoothed ML estimate Retrieval formula using the general smoothing scheme Reference language model Key rewriting step (where did we see it before?) 𝑐 𝑤,𝑞 >0 Similar rewritings are very common when using probabilistic models for IR… CS@UVa CS 6501: Information Retrieval

CS 6501: Information Retrieval What you should know How to estimate a language model General idea and different ways of smoothing Effect of smoothing CS@UVa CS 6501: Information Retrieval