美文网首页
train-set, test-set, validation-

train-set, test-set, validation-

作者: GradientDescent | 来源:发表于2017-03-14 17:59 被阅读0次

    http://stats.stackexchange.com/questions/19048/what-is-the-difference-between-test-set-and-validation-set

    • Training set: a set of examples used for learning: to fit the parameters of the classifier In the MLP case, we would use the training set to find the “optimal” weights with the back-prop rule

    • Validation set: a set of examples used to tune the parameters of a classifier In the MLP case, we would use the validation set to find the “optimal” number of hidden units or determine a stopping point for the back-propagation algorithm

    • Test set: a set of examples used only to assess the performance of a fully-trained classifier In the MLP case, we would use the test to estimate the error rate after we have chosen the final model (MLP size and actual weights) After assessing the final model on the test set, YOU MUST NOT tune the model any further!

    • Why separate test and validation sets? The error rate estimate of the final model on validation data will be biased (smaller than the true error rate) since the validation set is used to select the final model After assessing the final model on the test set, YOU MUST NOT tune the model any further!

    source : Introduction to Pattern Analysis,Ricardo Gutierrez-OsunaTexas A&M University, Texas A&M University

    相关文章

      网友评论

          本文标题:train-set, test-set, validation-

          本文链接:https://www.haomeiwen.com/subject/rcghnttx.html