Difference between revisions of "Cross-Validation"

From
Jump to: navigation, search
m
m (Text replacement - "http://" to "https://")
 
Line 5: Line 5:
 
|description=Helpful resources for your journey with artificial intelligence; videos, articles, techniques, courses, profiles, and tools  
 
|description=Helpful resources for your journey with artificial intelligence; videos, articles, techniques, courses, profiles, and tools  
 
}}
 
}}
[http://www.youtube.com/results?search_query=Cross+Validation+machine+learning+ML YouTube search...]
+
[https://www.youtube.com/results?search_query=Cross+Validation+machine+learning+ML YouTube search...]
[http://www.google.com/search?q=Cross+Validation+machine+learning+ML ...Google search]
+
[https://www.google.com/search?q=Cross+Validation+machine+learning+ML ...Google search]
  
 
* [[Algorithm Administration#Automated Learning|Automated Learning]]
 
* [[Algorithm Administration#Automated Learning|Automated Learning]]
Line 12: Line 12:
 
* [[Feature Exploration/Learning]]
 
* [[Feature Exploration/Learning]]
 
* [[Recursive Feature Elimination (RFE)]]
 
* [[Recursive Feature Elimination (RFE)]]
* [http://docs.aws.amazon.com/machine-learning/latest/dg/cross-validation.html Cross-Validation | AWS]
+
* [https://docs.aws.amazon.com/machine-learning/latest/dg/cross-validation.html Cross-Validation | AWS]
 
* [[Evaluating Machine Learning Models]]
 
* [[Evaluating Machine Learning Models]]
 
* [[Monte Carlo]]
 
* [[Monte Carlo]]
Line 18: Line 18:
  
  
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 [http://docs.aws.amazon.com/machine-learning/latest/dg/cross-validation.html Developer Guide - Amazon AWS ML]
+
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 [https://docs.aws.amazon.com/machine-learning/latest/dg/cross-validation.html Developer Guide - Amazon AWS ML]
  
 
* Method of estimating expected prediction error
 
* Method of estimating expected prediction error

Latest revision as of 06:54, 28 March 2023

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