Cross-Validation
- •
What it is
- •
evaluating a learning procedure across repeated training/validation partitions
- •
- •
- •
- •
Caution
- •
stratification does not remove dependence or solve class imbalance by itself
- •
preprocessing must be fitted separately inside each training fold
- •
when cross-validation is used for tuning, an independent test set or nested evaluation is needed for an appropriate final performance estimate
- •
the handout’s blanket instruction to use stratified k-fold for limited or imbalanced data is too broad; the sampling structure determines the appropriate splitter.
- •
- •
Related