k-Fold Cross Validation

k-Fold Cross Validation

alternative to LOOCV
Randomly divides observations into k groups, or folds, of approximately equal size. Similar to LOOCV by holding out one fold at a time and calculating the MSE for each fold. LOOCV is a special case of k-fold where k=n. The k-fold CV estimate is computed by:

CV(k)=1k∑i=1kMSEi

k-fold has a computational advantage over LOOCV

Bias-Variance Trade-Off for k-Fold Cross-Validation

k-fold CV often gives more accurate estimates of the test error rate than LOOCV. This has to do with a bias-variance trade-of.

Sources: 1

Connect With Me!