MLCC - Laboratory 3 - 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!

Download:

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.

[Xtr, Ytr] = MixGauss(...);

Ytr(Ytr==2)= -1;

[Xts, Yts] = MixGauss(...);

Yts(Yts==2) = -1;

2. Principal Component Analysis

3. Variable selection

4. If you have time - More experiments