Starting from:

$30

Homework 5 Solution




[3pts] Gaussian Discriminant Analysis. For this question you will build classi ers to label images of handwritten digits. Each image is 8 by 8 pixels and is represented as a vector of dimension 64 by listing all the pixel values in raster scan order. The images are grayscale and the pixel values are between 0 and 1. The labels y are 0; 1; 2; ; 9 corresponding to which character was written in the image. There are 700 training cases and 400 test cases for each digit; they can be found in a2digits.zip.



Starter code is provided to help you load the data (data.py). A skeleton (q1.py) is also provided for each question that you should use to structure your code.




Using maximum likelihood, t a set of 10 class-conditional Gaussians with a separate, full covariance matrix for each class. Remember that the conditional multivariate Gaussian prob-ability density is given by,

p(x j y = k; ; ) = (2 ) d=2j kj 1=2 exp
2(x k)T k
1(xk)
(1)


1






















You should take p(y = k) = 101. You will compute parameters kj and k for k 2 f0; : : : ; 9g; j 2 f1; : : : ; 64g. You should implement the covariance computation yourself (i.e. without the aid of ’np.cov’). To ensure numerical stability you will have to add a small mul-tiple of the identity to each covariance matrix. For this assignment you should add 0:01I to each k after computing its maximum likelihood estimate.







(a) [1pt] Using the parameters you t on the training set and Bayes rule, compute the average conditional log-likelihood, i.e. 1 PN log(p(y(i) j x(i); )) on both the train and




N i=1

test set and report it.




[1pt] Select the most likely posterior class for each training and test data point as your prediction, and report your accuracy on the train and test set.






https://markus.teach.cs.toronto.edu/csc411-2019-01
http://www.cs.toronto.edu/~mren/teach/csc411_19s/syllabus.pdf



1
CSC411 Homework 5










[1pt] Compute the leading eigenvectors (largest eigenvalue) for each class covariance matrix (can use np.linalg.eig) and plot them side by side as 8 by 8 images.



Report your answers to the above questions, and submit your completed Python code for q1.py.




[2pts] Categorial Distribution. Let’s consider tting the categorical distribution, which is a discrete distribution over K outcomes, which we’ll number 1 through K. The probability
of each category is explicitly represented with parameter k. For it to be a valid probability

P

distribution, we clearly need k 0 and k k = 1. We’ll represent each observation x as a 1-of-K encoding, i.e, a vector where one of the entries is 1 and the rest are 0. Under this model, the probability of an observation can be written in the following form:




K

p(x; ) = Y kxk :

k=1




Suppose we observe a dataset D = fx(n)gNn=1. Denote the count for outcome k as Nk, so

PN (n)

Nk = n=1 xk . In the previous assignment, you showed that the maximum likelihood estimate for the counts was:

Nk k = N :









[1pts] For the prior, we’ll use the Dirichlet distribution, which is de ned over the set of probability vectors (i.e. vectors that are nonnegative and whose entries sum to 1). Its PDF is as follows:



p( ) / 1a1 1 Kak 1:

A useful fact is that if Dirichlet(a1; : : : ; aK ), then




E[ k] =
ak
:
Pk0 ak0
Determine the posterior distribution p( j D). From that, determine the posterior pre-dictive probability that the next outcome will be k.




[1pt] Still assuming the Dirichlet prior distribution, determine the MAP estimate of the parameter vector . For this question, you may assume each ak 1.



[4pts] Factor Analysis.



In lecture, we covered the EM algorithm applied to mixture of Gaussians models. In this question, we’ll look at another interesting example of EM, namely factor analysis. This is a model very similar in spirit to PCA: we have data in a high-dimensional space, and we’d like to summarize it with a lower-dimensional representation. Unlike PCA, we formulate the problem in terms of a probabilistic model. We assume the latent code vector z is drawn from a standard Gaussian distribution N (0; I), and that the observations are drawn from a diagonal covariance Gaussian whose mean is a linear function of z. We’ll consider the slightly simpli ed case of scalar-valued z. The probabilistic model is given by:




N (0; 1) x j z N (zu; );



2

CSC411 Homework 5










where = diag( 12; : : : ; D2). Note that the observation model can be written in terms of coordinates:

xd j z N (zud; j):




We have a set of observations fx(n)gNn=1, and z is a latent variable, analogous to the mixture component in a mixture-of-Gaussians model. The parameters of the model are = fu; g.




In this question, we’ll derive both the E-step and the M-step for the EM algorithm. If you don’t feel like you understand the EM algorithm yet, don’t worry; we’ll walk you through it, and the question will be mostly mechanical.




E-step (2pts). In this step, our job is determine the posterior distribution q(z) = p(z j x; ). After nding this distribution, you should compute formulas for the (univari-ate) statistics which we’ll use in the M-step:



= E[z j x; ] = s = E[z2 j x; ] =



Tips:




Compare the model here with the linear Gaussian model of the Appendix. Note that z here is a scalar, while the Appendix gives the more general formulation where x and z are both vectors.




To help you check your work: p(z j x; ) is a univariate Gaussian distribution whose mean is a linear function of x, and whose variance does not depend on x.




Once you have gured out the mean and variance, that will give you the conditional expectations.




M-step (2pts). In this step, we need to re-estimate the parameters of the model. Suppose the current parameters (used in the E-step) are old = fuold; oldg. For this part, your job is to derive a formula for unew that maximizes the expected log-likelihood, i.e.,
N

unew arg max 1 X Eq (z(n))[log p(z(n); x(n); )]:




u N n=1 n




Recall that qn(z(n)) = p(z(n)jx(n); old) is the distribution computed in part (a). Your an-swer should be given in terms of the m(n) = E[z (n) j x(n); old] and s(n) = E[(z(n))2 j x(n); old] from the previous part. (I.e., you don’t need to expand out the formulas for m(n) and




s(n) in this step, because if you were implementing this algorithm, you’d use the values m(n) and s(n) that you previously computed.)














































3
CSC411 Homework 5










Tips:




Expand log p(z(n); x(n); ) to log p(z(n); ) + log p(x(n) j z(n); ) (log is the natural logarithm).




Expand out the PDF of the Gaussian distribution.




Apply linearity of expectation. You should wind up with terms proportional to Eqn(z(n))[z(n)] and Eqn(z(n))[(z(n))2]. Replace these expectations with m(n) and s(n). You should get an equation that does not mention z(n).




In order to nd the maximum likelihood parameter unew, you need to take the derivative with respect to ud, set it to zero, and solve for unew.




M-step, cont’d (optional) Find the M-step update for the observation variances f dgDd=1. This can be done in a similar way to part (b).



















































































































































4
CSC411 Homework 5










Appendix: Some Properties of Conditional Gaussians




Consider a multivariate Gaussian random variable z with the mean and the covariance matrix




1 ( is the inverse of the covariance matrix and is called the precision matrix). We denote this by




p(z) = N (z j ; 1):




Now consider another Gaussian random variable x, whose mean is an a ne function of z (in the form to be clear soon), and its covariance L 1 is independent of z. The conditional distribution of x given z is




p(x j z) = N (x j Az + b; L 1):




Here the matrix A and the vector b are of appropriate dimensions.




In some problems, we are interested in knowing the distribution of z given x, or the marginal distribution of x. One can apply Bayes’ rule to nd the conditional distribution p(z j x). After some calculations, we can obtain the following useful formulae:




 

p(x) = N x j A + b; L 1 + A 1A




 

p(z j x) = N z j C(AL(x b) + ); C




with

C=( +ALA) 1:




































































































5

More products