ISML Machine Learning, Class 20

Lab – Dimensionality reduction and feature selection


In this laboratory we will address the problem of data analysis with a reference to a classification problem.


Follow the instructions below. Think hard before you call the instructors!


1. Warm up - data generation


You will generate a training and a test set of D-dimensional points (N points for each class), with N=100 D=30.



[X2tr, Ytr] = MixGauss(…);

Ytr(Ytr==2) = -1;

[X2ts, Yts] = MixGauss(…);

Yts(Yts==2) = -1;


2. Principal Component Analysis





3. Variable selection



4. If you have time - More experiments