Difference between revisions of "Cross-Validation"

From
Jump to: navigation, search
m
m
Line 15: Line 15:
 
* [[Evaluating Machine Learning Models]]
 
* [[Evaluating Machine Learning Models]]
 
* [[Monte Carlo]]
 
* [[Monte Carlo]]
 +
* [[Backtesting]]
  
  

Revision as of 09:34, 30 September 2020

YouTube search... ...Google search


a technique for evaluating Machine Learning (ML) models by training several ML models on subsets of the available input data and evaluating them on the complementary subset of the data. Use cross-validation to detect overfitting, ie, failing to generalize a pattern Developer Guide - Amazon AWS ML

  • Method of estimating expected prediction error
  • Helps selecting the best fit model
  • Help ensuring model is not over fit

Types of Cross Validation:

  • K-Fold
  • Leave One Out
  • Bootstrap
  • Hold Out