Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf ·...

15
Latent Dirichlet Allocation (LDA) 1 Hedibert F. Lopes Insper Institute of Education and Research ao Paulo, Brazil 1 Slides based on Blei, Ng and Jordan’s paper “Latent Dirichlet Allocation” that appeared in 2003 the Journal of Machine Learning Research, Volume 3, pages 993-1022.

Transcript of Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf ·...

Page 1: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Latent Dirichlet Allocation (LDA)1

Hedibert F. LopesInsper Institute of Education and Research

Sao Paulo, Brazil

1Slides based on Blei, Ng and Jordan’s paper “Latent Dirichlet Allocation” that appeared in2003 the Journal of Machine Learning Research, Volume 3, pages 993-1022.

Page 2: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Paper’s abstract

LDA: generative probabilistic model for collections of discrete data (text corpora).

LDA: 3-level hierarchical Bayesian model, in which each item of a collection ismodeled as a finite mixture over an underlying set of topics.

Topics: modeled as infinite mixtures over underlying sets of topic probabilities.

In the context of text modeling, the topic probabilities provide an explicitrepresentation of a document.

2/15

Page 3: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Notation and terminology

A word is the basic unit of discrete data, defined to be an item from avocabulary indexed by {1, . . . ,V }.

A document is a sequence of N words denoted by ω = (w1,w2, . . . ,wn), wherewn is the nth word in the sequence

A corpus is a collection of M documents denoted by D = {ω1, . . . , ωN}

3/15

Page 4: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Latent Dirichlet allocation

LDA is a generative probabilistic model of a corpus.

Documents are represented as random mixtures over latent topics.

LDA assumes the following generative process for document ω in a corpus D:

1. Choose N ∼ Poisson(ξ).

2. Choose θ ∼ Dirichlet(α).

3. For each of the N words wn:

3.1 Choose a topic zn ∼ Multinomial(θ).3.2 Choose a word wn from p(wn|zn, β).

Simplifying assumptions:

I The dimensionality k of the Dirichlet distribution is known and fixed.

I The word probabilities are parameterized by β:

βij = Pr(w j = 1|z i = 1)

4/15

Page 5: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Probabilistic topic models2

2David M. Blei (2012) Probabilistic topic models. Communications of the Association forComputing Machinery (ACM), 55(4), 77-84.

5/15

Page 6: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Probabilistic topic models

6/15

Page 7: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Likelihood

A k-dimensional Dirichlet random variable θ can take values in the(k − 1)-simplex, and has the following probability density on this simplex:

p(θ|α) =Γ(∑k

i=1 αi )∏ki=1 Γ(αi )

θα1−11 · · · θαk−1

k

Given the parameters α and β, the joint distribution of a topic mixture θ, a setof N topics z , and a set of N words w is given by:

p(θ, z , ω|α, β) = p(θ|α)N∏

n=1

p(zn|θ)p(wn|zn, β),

7/15

Page 8: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Marginal distribution of a documentIntegrating over (θ, z), we obtain the marginal distribution of a document:

p(ω|α, β) =

∫p(θ|α)

(N∏

n=1

∑zn

p(zn|θ)p(wn|zn, β)

)dθ.

The probability of a corpus is then:

p(D|α, β) =M∏d=1

∫p(θd |α)

(Nd∏n=1

∑zdn

p(zdn|θd)p(wdn|zdn, β)

)dθd .

8/15

Page 9: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Three levels in the LDA representation

Corpus-level:The parameters α and β are corpus-level parameters, assumed to be sampledonce in the process of generating a corpus.

Document-level:The variables θd are document-level variables, sampled once per document.

Word-level:Finally, the variables zdn and wdn are word-level variables and are sampled oncefor each word in each document.

9/15

Page 10: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Other latent variable modelsUnigram model:The words of every document are drawn independently from a single multinomialdistribution:

p(ω) =N∏

n=1

p(wn).

Mixture of unigrams:Each document is generated by first choosing a topic z and then generating Nwords independently from the conditional multinomial p(w |z):

p(ω) =∑z

p(z)N∏

n=1

p(wn|z).

Probabilistic latent semantic indexing (pLSI):Attempts to relax the simplifying assumption made in the mixture of unigramsmodel that each document is generated from only one topic.

p(d ,wn) = p(d)∑z

p(wn|z)p(z |d).

10/15

Page 11: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Topic models

11/15

Page 12: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Inference

The key inferential problem that we need to solve in order to use LDA is that ofcomputing the posterior distribution of the hidden variables given a document:

p(θ, z |ω, α, β) =p(θ, z , ω|α, β)

p(ω|α, β),

with

p(ω|α, β) =Γ(∑k

i=1 αi )∏ki=1 Γ(αi )

∫ ( k∏i=1

θαi−1i

) N∏n=1

k∑i=1

V∏j=1

(θiβij)w j

n

dθ,

a function which is intractable due to the coupling between θ and β in thesummation over latent topics.

Although the posterior distribution is intractable for exact inference, a widevariety of approximate inference algorithms can be considered for LDA, includingLaplace approximation, variational approximation, and MCMC (Jordan, 1999)3.

3Michael Jordan, editor. Learning in Graphical Models. MIT Press, Cambridge, MA, 1999.12/15

Page 13: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

Example16,000 documents from a subset of the TREC AP corpus (Harman, 1992)4. They fit a100-topic LDA model. The top words from some of the resulting multinomialdistributions p(w |z) are illustrated in Figure 8 (top).

Bottom Fig 8: document from TREC AP corpus not used for parameter estimation.4Harman (1992) Overview of the first text retrieval conference (TREC-1). In Proceedings of

the First Text Retrieval Conference (TREC-1), pages 1-20.13/15

Page 14: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

PerplexityThe perplexity is monotonically decreasing in the likelihood of the test data, and isalgebraically equivalent to the inverse of the geometric mean per-word likelihood. Moreformally, for a test set of M documents, the perplexity is:

perplexity(Dtest) = exp

{−∑M

d=1 log p(ωd)∑Md=1 Nd

}A lower perplexity score indicates better generalization performance.

TREC AP corpus with 16,333 newswire articles with 23,075 unique terms.90% for training and 10% for testing.

14/15

Page 15: Latent Dirichlet Allocation (LDA)1 - Hediberthedibert.org/wp-content/uploads/2018/07/lda.pdf · Latent Dirichlet allocation LDA is a generative probabilistic model of a corpus. Documents

References (chronological order)1. Blei, Ng and Jordan (2003) Latent Dirichlet allocation. Journal of Machine Learning Research (JMLR), 3, 993-1022.

http://www.jmlr.org/papers/volume3/blei03a/blei03a.pdf

2. Griffiths and Steyvers (2004) Finding scientific topics. Proceedings of the National Academy of Sciences (PNAS), Vol. 101, Suppl. 1,5228-5235.https://doi.org/10.1073/pnas.0307752101

3. Blei and Lafferty (2006) Correlated topic models. Advances in Neural Information Processing Systems (NIPS).http://people.ee.duke.edu/∼lcarin/Blei2005CTM.pdf

4. Blei and Lafferty (2006) Dynamic topic models. In International Conference on Machine Learning (ICML), 2006.https://mimno.infosci.cornell.edu/info6150/readings/dynamic topic models.pdf

5. Blei and Lafferty (2007) A correlated topic model of science. The Annals of Applied Statistics (AOAS), Vol. 1, No. 1, 17-35.https://projecteuclid.org/download/pdfview 1/euclid.aoas/1183143727

6. Blei and McAuliffe (2007) Supervised topic models. In Proceedings of the Neural Information Processing Systems (NIPS), Vol. 21, 1-8.https://arxiv.org/pdf/1003.0783.pdf

7. Steyvers and Griffiths (2007) Probabilistic topic models.http://psiexp.ss.uci.edu/research/papers/SteyversGriffithsLSABookFormatted.pdf

8. Blei (2012) Probabilistic topic models. Communications of the Association for Computing Machinery (AMC), Vol. 55, No. 4.http://www.cs.columbia.edu/∼blei/papers/Blei2012.pdf

9. Taddy (2012) On estimation and selection for topic models. In Proceedings of the 15th International Conference on Artificial Intelligence andStatistics (AISTATS), 2012, La Palma, Canary Islands. Volume XX of JMLR: W&CP XX.http://proceedings.mlr.press/v22/taddy12/taddy12.pdf

10. Alghamdi and Alfalqi (2015) A survey of topic modeling in text mining. International Journal of Advanced Computer Science and Applications(IJACSA), Vol. 6, No. 1, 147-153.https://thesai.org/Downloads/Volume6No1/Paper 21-A Survey of Topic Modeling in Text Mining.pdf

11. Airoldi and Bischof (2016) Improving and evaluating topic models and other models of text. Journal of the American Statistical Association(JASA), 111:516, 1381-1403.https://doi.org/10.1080/01621459.2015.1051182

15/15