Closed nbgl closed 7 years ago
Completed in fdb1e83.
Found a bug in your derivation.
f = phi(x)^\top w and in your least squares error you say f = Kw
The second is not correct. To go from the first to the second, you need to know that K = \phi^\top \phi The kernel trick: k(x_i, x_j) = < \phi(x_i) , \phi(x_j) >
Finished in 032cca0 (#181)