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
Advantages over validation set approach:
- far less bias
- tends to not overestimate test error rate as much
- performing LOOCV multiple times will always yield the same results: there is no randomness in the training/validation set splits
There's a shortcut when implementing least squares linear or polynomial regression:
where
LOOCV is a very general method and can be applied to any kind of predictive modeling
Sources: 1