18
CSC 411: Lecture 14: Principal Components Analysis & Autoencoders Class based on Raquel Urtasun & Rich Zemel’s lectures Sanja Fidler University of Toronto March 14, 2016 Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 1 / 18

CSC 411: Lecture 14: Principal Components Analysis

  • Upload
    others

  • View
    5

  • Download
    0

Embed Size (px)

Citation preview

Page 1: CSC 411: Lecture 14: Principal Components Analysis

CSC 411: Lecture 14: Principal Components Analysis &Autoencoders

Class based on Raquel Urtasun & Rich Zemel’s lectures

Sanja Fidler

University of Toronto

March 14, 2016

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 1 / 18

Page 2: CSC 411: Lecture 14: Principal Components Analysis

Today

Dimensionality Reduction

PCA

Autoencoders

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 2 / 18

Page 3: CSC 411: Lecture 14: Principal Components Analysis

Mixture models and Distributed Representations

One problem with mixture models: each observation assumed to come fromone of K prototypes

Constraint that only one active (responsibilities sum to one) limits therepresentational power

Alternative: Distributed representation, with several latent variables relevantto each observation

Can be several binary/discrete variables, or continuous

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 3 / 18

Page 4: CSC 411: Lecture 14: Principal Components Analysis

Example: Continuous Underlying Variables

What are the intrinsic latent dimensions in these two datasets?

How can we find these dimensions from the data?

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 4 / 18

Page 5: CSC 411: Lecture 14: Principal Components Analysis

Principal Components Analysis

PCA: most popular instance of second main class of unsupervised learningmethods, projection methods, aka dimensionality-reduction methods

Aim: find a small number of “directions” in input space that explainvariation in input data; re-represent data by projecting along those directions

Important assumption: variation contains information

Data is assumed to be continuous:

I linear relationship between data and the learned representation

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 5 / 18

Page 6: CSC 411: Lecture 14: Principal Components Analysis

PCA: Common Tool

Handles high-dimensional data

I If data has thousands of dimensions, can be difficult for a classifier todeal with

Often can be described by much lower dimensional representation

Useful for:

I VisualizationI PreprocessingI Modeling – prior for new dataI Compression

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 6 / 18

Page 7: CSC 411: Lecture 14: Principal Components Analysis

PCA: Intuition

As in the previous lecture, training data has N vectors, {xn}Nn=1, ofdimensionality D, so xi ∈ RD

Aim to reduce dimensionality:I linearly project to a much lower dimensional space, M << D:

x ≈ Uz + a

where U a D ×M matrix and z a M-dimensional vector

Search for orthogonal directions inspace with the highest variance

I project data onto this subspace

Structure of data vectors is encodedin sample covariance

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 7 / 18

Page 8: CSC 411: Lecture 14: Principal Components Analysis

Finding Principal Components

To find the principal component directions, we center the data (subtract thesample mean from each variable)

Calculate the empirical covariance matrix:

C =1

N

N∑n=1

(x(n) − x̄)(x(n) − x̄)T

with x̄ the mean

What’s the dimensionality of C?

Find the M eigenvectors with largest eigenvalues of C : these are theprincipal components

Assemble these eigenvectors into a D ×M matrix U

We can now express D-dimensional vectors x by projecting them toM-dimensional z

z = UTx

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 8 / 18

Page 9: CSC 411: Lecture 14: Principal Components Analysis

Standard PCA

Algorithm: to find M components underlying D-dimensional data

1. Select the top M eigenvectors of C (data covariance matrix):

C =1

N

N∑n=1

(x(n) − x̄)(x(n) − x̄)T = UΣUT ≈ U1:M Σ1:MUT1:M

where U is orthogonal, columns are unit-length eigenvectors

UTU = UUT = 1

and Σ is a matrix with eigenvalues on the diagonal, representing thevariance in the direction of each eigenvector

2. Project each input vector x into this subspace, e.g.,

zj = uTj x; z = UT1:Mx

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 9 / 18

Page 10: CSC 411: Lecture 14: Principal Components Analysis

Two Derivations of PCA

Two views/derivations:

I Maximize variance (scatter of green points)I Minimize error (red-green distance per datapoint)

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 10 / 18

Page 11: CSC 411: Lecture 14: Principal Components Analysis

PCA: Minimizing Reconstruction Error

We can think of PCA as projecting the data onto a lower-dimensionalsubspace

One derivation is that we want to find the projection such that the bestlinear reconstruction of the data is as close as possible to the original data

J(u, z,b) =∑n

||x(n) − x̃(n)||2

where

x̃(n) =M∑j=1

z(n)j uj +

D∑j=M+1

bjuj

Objective minimized when first M components are the eigenvectors with themaximal eigenvalues

z(n)j = uTj x

(n); bj = x̄Tuj

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 11 / 18

Page 12: CSC 411: Lecture 14: Principal Components Analysis

Applying PCA to faces

Run PCA on 2429 19x19 grayscale images (CBCL data)

Compresses the data: can get good reconstructions with only 3 components

PCA for pre-processing: can apply classifier to latent representation

I PCA with 3 components obtains 79% accuracy on face/non-facediscrimination on test data vs. 76.8% for GMM with 84 states

Can also be good for visualization

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 12 / 18

Page 13: CSC 411: Lecture 14: Principal Components Analysis

Applying PCA to faces: Learned basis

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 13 / 18

Page 14: CSC 411: Lecture 14: Principal Components Analysis

Applying PCA to digits

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 14 / 18

Page 15: CSC 411: Lecture 14: Principal Components Analysis

Relation to Neural Networks

PCA is closely related to a particular form of neural network

An autoencoder is a neural network whose outputs are its own inputs

The goal is to minimize reconstruction error

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 15 / 18

Page 16: CSC 411: Lecture 14: Principal Components Analysis

Autoencoders

Definez = f (W x); x̂ = g(V z)

Goal:

minW,V

1

2N

N∑n=1

||x(n) − x̂(n)||2

If g and f are linear

minW,V

1

2N

N∑n=1

||x(n) − VW x(n)||2

In other words, the optimal solution is PCA.

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 16 / 18

Page 17: CSC 411: Lecture 14: Principal Components Analysis

Autoencoders: Nonlinear PCA

What if g() is not linear?

Then we are basically doing nonlinear PCA

Some subtleties but in general this is an accurate description

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 17 / 18

Page 18: CSC 411: Lecture 14: Principal Components Analysis

Comparing Reconstructions

Urtasun, Zemel, Fidler (UofT) CSC 411: 14-PCA & Autoencoders March 14, 2016 18 / 18