Leave-One-Out Cross-Validation

Leave-One-Out Cross-Validation

aka LOOCV
Similar to validation set approach, but instead leaves only one observation out for testing. MSE on one value provides an approximately unbiased estimate for the test error, but is a poor estimate because it is highly variable. The procedure is repeated n times. The LOOCV estimate for the test MSE is the average of these n test error estimates:

CV(n)=1n∑i=1nMSEi

Advantages over validation set approach:

CV(n)=1n∑i=1n(yi−y^i1−hi)2

where y^i is the ith fitted value from the original least squares fit and hi is the leverage defined here

LOOCV is a very general method and can be applied to any kind of predictive modeling

Sources: 1

Connect With Me!