Tut 7 Flashcards
(7 cards)
List 5 methods that can be used to perform feature extraction
PCA
ICA independent component analysis
whitening
Random projections
LDA linear discriminant analysis
Sparse coding
How to find the proportion of variance explained by specific principal components
Eigen Values for PCs/(Eigen values for ALL)
Oja’s rule
w <- w + η( y(xT - yw))
What does whitening do
After PCA
Makes covariance matrix in new space equal to identity matrix
Each dimension then has same variance
Drawing PCA and LDA
For PCA ignore class labels and look for longest straight line running through points in the cloud (highest variance line)
For LDA, don’t ignore class labels, look for the line which could be the axis of separation (using only values on that line could separate the class well)
L0 norm
Count number of non zero elements in a vector
Asked for lowest sparsity
Cmpare L0 norm
||y||_0
if equal, compare reconstruction error ||x - V^Ty||_2