machine learning dimensionality reduction

46
Jeff Howbert Introduction to Machine Learning Winter 2014 1 Machine Learning Dimensionality Reduction Some slides thanks to Xiaoli Fern (CS534, Oregon State Univ., 2011). Some figures taken from "An Introduction to Statistical Learning, with applications in R" (Springer, 2013) with permission of the authors, G. James, D. Witten, T. Hastie and R. Tibshirani.

Upload: ruth-solomon

Post on 30-Dec-2015

52 views

Category:

Documents


1 download

DESCRIPTION

Machine Learning Dimensionality Reduction. Some slides thanks to Xiaoli Fern (CS534, Oregon State Univ., 2011). - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 1

Machine Learning

Dimensionality Reduction

Some slides thanks to Xiaoli Fern (CS534, Oregon State Univ., 2011).

Some figures taken from "An Introduction to Statistical Learning, with applications in R"  (Springer, 2013) with permission of the authors, G. James, D. Witten, T. Hastie and R.

Tibshirani.

Page 2: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 2

Many modern data domains involve huge numbers of features / dimensions

– Documents: thousands of words, millions of bigrams

– Images: thousands to millions of pixels

– Genomics: thousands of genes, millions of DNA polymorphisms

Dimensionality reduction

Page 3: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 3

High dimensionality has many costs

– Redundant and irrelevant features degrade performance of some ML algorithms

– Difficulty in interpretation and visualization

– Computation may become infeasible what if your algorithm scales as O( n3 )?

– Curse of dimensionality

Why reduce dimensions?

Page 4: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 4

Feature selection– Select subset of existing features (without modification)

– Lecture 5 and Project 1

Model regularization– L2 reduces effective dimensionality

– L1 reduces actual dimensionality

Combine (map) existing features into smaller number of new features– Linear combination (projection)

– Nonlinear combination

Approaches to dimensionality reduction

Page 5: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 5

Linearly project n-dimensional data onto a k-dimensional space– k < n, often k << n

– Example: project space of 104 words into 3 dimensions

There are infinitely many k-dimensional subspaces we can project the data onto.

Which one should we choose?

Linear dimensionality reduction

Page 6: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 6

Best k-dimensional subspace for projection depends on task– Classification: maximize separation among classes

Example: linear discriminant analysis (LDA)

– Regression: maximize correlation between projected data and response variable Example: partial least squares (PLS)

– Unsupervised: retain as much data variance as possible Example: principal component analysis (PCA)

Linear dimensionality reduction

Page 7: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 7

LDA for two classes

Page 8: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 8

Consider data without class labels Try to find a more compact representation of the

data

Unsupervised dimensionality reduction

Page 9: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 9

Widely used method for unsupervised, linear dimensionality reduction

GOAL: account for variance of data in as few dimensions as possible (using linear projection)

Principal component analysis (PCA)

Page 10: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 10

First PC is the projection direction that maximizes the variance of the projected data

Second PC is the projection direction that is orthogonal to the first PC and maximizes variance of the projected data

Geometric picture of principal components (PCs)

Page 11: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 11

Find a line, such that when the data is projected onto that line, it has the maximum variance.

PCA: conceptual algorithm

Page 12: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 12

Find a second line, orthogonal to the first, that has maximum projected variance.

PCA: conceptual algorithm

Page 13: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 13

Repeat until have k orthogonal lines The projected position of a point on these lines

gives the coordinates in the k-dimensional reduced space.

PCA: conceptual algorithm

Page 14: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 14

Mean center the data

Compute covariance matrix

Calculate eigenvalues and eigenvectors of – Eigenvector with largest eigenvalue 1 is 1st principal

component (PC)

– Eigenvector with kth largest eigenvalue k is kth PC

– k / i i = proportion of variance captured by kth PC

Steps in principal component analysis

Page 15: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 15

Full set of PCs comprise a new orthogonal basis for feature space, whose axes are aligned with the maximum variances of original data.

Projection of original data onto first k PCs gives a reduced dimensionality representation of the data.

Transforming reduced dimensionality projection back into original space gives a reduced dimensionality reconstruction of the original data.

Reconstruction will have some error, but it can be small and often is acceptable given the other benefits of dimensionality reduction.

Applying a principal component analysis

Page 16: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 16

PCA example (1)

original data mean centered data withPCs overlayed

Page 17: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 17

PCA example (1)

original data projectedInto full PC space

original data reconstructed usingonly a single PC

Page 18: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 18

PCA example (2)

Page 19: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 19

PCA: choosing the dimension k

Page 20: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 20

PCA: choosing the dimension k

Page 21: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 21

A typical image of size 256 x 128 pixels is described by 256 x 128 = 32768 dimensions.

Each face image lies somewhere in this high-dimensional space.

Images of faces are generally similar in overall configuration, thus– They cannot be randomly distributed in this space.

– We should be able to describe them in a much lower-dimensional space.

PCA example: face recognition

Page 22: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 22

PCA for face images: eigenfaces

Page 23: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 23

(Turk and Pentland 1991)

Face recognition in eigenface space

Page 24: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 24

Face image retrieval

Page 25: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 25

Helps reduce computational complexity. Can help supervised learning.

– Reduced dimension simpler hypothesis space.

– Smaller VC dimension less risk of overfitting.

PCA can also be seen as noise reduction. Caveats:

– Fails when data consists of multiple separate clusters.

– Directions of greatest variance may not be most informative (i.e. greatest classification power).

PCA: a useful preprocessing step

Page 26: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 26

Practical issue: covariance matrix is n x n.– E.g. for image data = 32768 x 32768.

– Finding eigenvectors of such a matrix is slow.

Singular value decomposition (SVD) to the rescue!– Can be used to compute principal components.

– Efficient implementations available, e.g. MATLAB svd.

Scaling up PCA

Page 27: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 27

X = USVT

Singular value decomposition (SVD)

Page 28: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 28

X = USVT

Singular value decomposition (SVD)

Page 29: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 29

Create mean-centered data matrix X.

Solve SVD: X = USVT.

Columns of V are the eigenvectors of sorted from largest to smallest eigenvalues.

Select the first k columns as our k principal components.

SVD for PCA

Page 30: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 30

Supervised alternative to PCA.

Attempts to find set of orthogonal directions that explain both response and predictors.

Partial least squares (PLS)

Page 31: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 31

First direction:– Calculate simple linear regression between each

predictor and response.

– Use coefficients from these regressions to define first direction, giving greatest weight to predictors which are highly correlated with response (large coefficients).

Subsequent directions:– Repeat regression calculations on residuals of

predictors from preceding direction.

PLS algorithm

Page 32: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 32

PLS vs. PCA

solid line – first PLS directiondotted line – first PCA direction

Page 33: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 33

Popular in chemometrics.– Large number of variables from digitized spectrometry

signals.

In regression tasks, PLS doesn’t necessarily perform better than ridge regression or pre-processing with PCA.– Less bias, but may increase variance.

Partial least squares

Page 34: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 34

High-dimensional data is projected onto low-dimensional subspace using a random matrix whose columns have unit length.

No attempt to optimize a criterion, e.g. variance.

Preserves structure (e.g. distances) of data with minimal distortion.

Computationally cheaper than PCA.

Random subspace projection

Page 35: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 35

Shown to be competitive with PCA for dimensionality reduction in several tasks– Face recognition

– Document retrieval

Also useful for producing perturbed datasets as inputs for ensembles.

Random subspace projection

Page 36: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 36

Data often lies on or near a nonlinear low-dimensional surface

Such low-dimensional surfaces are called manifolds.

Nonlinear dimensionality reduction

Page 37: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 37

Page 38: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 38

Page 39: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 39

Page 40: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 40

Page 41: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 41

Page 42: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 42

ISOMAP example (1)

Page 43: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 43

ISOMAP example (2)

Page 44: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 44

Visualizes high-dimensional data in a 2- or 3-dimensional map.

Better than existing techniques at creating a single map that reveals structure at many different scales.

Particularly good for high-dimensional data that lie on several different, but related, low-dimensional manifolds.– Example: images of objects from multiple classes

seen from multiple viewpoints.

t-Stochastic neighbor embedding (t-SNE)

Page 45: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 45

Visualization of classes in MNIST data

t-SNE ISOMAP

Page 46: Machine Learning Dimensionality Reduction

Jeff Howbert Introduction to Machine Learning Winter 2014 46

“Dimensionality reduction: a comparative review”

(mostly nonlinear methods)

MATLAB toolbox for dimensionality reduction

Dimensionality reduction resources