MLCC - Laboratory 2 - Regularization networks


This lab is about Regularized Least Squares (linear and non linear). Follow the instructions below. Think hard before you call the instructors!

Download:

1. Warm up - data generation

We start again from data generation, use the function MixGauss:
Plot the various datasets with the function scatter, eg:
figure;
hold on
scatter(X(Y==1,1), X(Y==1,2), '.b');
scatter(X(Y==-1,1), X(Y==-1,2), '.y');
title('training set')

2. Linear RLS

3. Non Linear RLS

4. If you have time - More experiments