Dimension Reduction

Principal Component Analysis

Principal Component Analysis (PCA) is a dimensionality reduction technique in machine learning. It aims to find a new set of orthogonal variables, called principal components, that capture the maximum amount of variance in the original data. By projecting the data onto these components, PCA helps simplify and interpret complex datasets, enabling efficient analysis and visualization.

Auto-Encoder Example

We want two functions, an encoder and a decoder:

F:RnRm,G:RmRn

To reconstruct we compose the two:

GF:RnRm

We define a loss function:

l:Rn×RnR

Quadratic loss:

l(x,x^)=12xx^2