700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > 什么是交叉检验(K-fold cross-validation)

什么是交叉检验(K-fold cross-validation)

时间:2020-11-15 15:26:30

相关推荐

什么是交叉检验(K-fold cross-validation)

什么是交叉检验(K-fold cross-validation)

K层交叉检验就是把原始的数据随机分成K个部分。在这K个部分中,选择一个作为测试数据,剩下的K-1个作为训练数据。

交叉检验的过程实际上是把实验重复做K次,每次实验都从K个部分中选择一个不同的部分作为测试数据(保证K个部分的数据都分别做过测试数据),剩下的K-1个当作训练数据进行实验,最后把得到的K个实验结果平均。

InK-fold cross-validation, the original sample is randomly partitioned intoKsubsamples. Of theKsubsamples, a single subsample is retained as the validation data for testing the model, and the remainingK−1 subsamples are used as training data. The cross-validation process is then repeatedKtimes (thefolds), with each of theKsubsamples used exactly once as the validation data. TheKresults from the folds then can be averaged (or otherwise combined) to produce a single estimation. The advantage of this method over repeated random sub-sampling is that all observations are used for both training and validation, and each observation is used for validation exactly once. 10-fold cross-validation is commonly used.

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。