1
Q

List 5 methods that can be used to perform feature extraction

A

PCA
ICA independent component analysis
whitening
Random projections
LDA linear discriminant analysis
Sparse coding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to find the proportion of variance explained by specific principal components

A

Eigen Values for PCs/(Eigen values for ALL)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Oja’s rule

A

w <- w + η( y(xT - yw))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does whitening do

A

After PCA
Makes covariance matrix in new space equal to identity matrix
Each dimension then has same variance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Drawing PCA and LDA

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

L0 norm

A

Count number of non zero elements in a vector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Asked for lowest sparsity

A

Cmpare L0 norm
||y||_0
if equal, compare reconstruction error ||x - V^Ty||_2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly