CBMM Summer School, Day 2: Machine Learning

 Lab 2: Kernel RLS

This lab is about linear Kernel Regularized Least Squares. Extract the zip file in a directory and set the MATLAB path to that, follow the instructions below and think/try hard before you call the instructors!

1. Kernel Regularized Least Squares

2. Parameter Selection

intSigma = exp(-10:4);
intLambda = 0.00001;
nrip = 51;
Check the effects of overfitting and oversmoothing by selecting, instead, a small or a larger sigma (e.g., sigma=0.05 or sigma=10).
How can you choose a reasonable interval intSigma to search for "good" sigmas?

3. (Optional) - Additional experiments