简体   繁体   English

非常适合机器学习

[英]A good fit in Machine Learning

I am reading an article online.我正在网上阅读一篇文章。 It described the Overfitting and Underfitting of ML Model.它描述了 ML Model 的过拟合和欠拟合。 I am writing the stanza of the article which I did not understand the meaning of it.please help me out to understand that what the mean of " Perform ML Algo overtime "我正在写这篇文章的节,我不明白它的意思。请帮助我理解“ Perform ML Algo overtime ”的意思

To understand this goal, we can look at the performance of a machine learning algorithm over time as it is learning training data.为了理解这个目标,我们可以观察机器学习算法在学习训练数据时的性能。 We can plot both the skill on the training data and the skill on a test dataset we have held back from the training process.我们可以 plot 训练数据的技能和我们在训练过程中阻止的测试数据集的技能。 Over time, as the algorithm learns, the error for the model on the training data goes down and so does the error on the test dataset.随着时间的推移,随着算法的学习,训练数据上 model 的误差会下降,测试数据集上的误差也会下降。 If we train for too long, the performance on the training dataset may continue to decrease because the model is overfitting and learning the irrelevant detail and noise in the training dataset.如果我们训练的时间过长,训练数据集的性能可能会继续下降,因为 model 过度拟合并且学习了训练数据集中不相关的细节和噪声。 At the same time, the error for the test set starts to rise again as the model' ability to generalize decreases同时,随着模型泛化能力的下降,测试集的误差又开始上升

This is talking about the bias and variance tradeoff.这是关于偏差和方差的权衡。

We can plot both the skill on the training data我们可以 plot 这两个技能都在训练数据上

The author shouldn't use "skill", instead, using performance, which is the error from the loss function across different complexity or just Train error vs Test error across epoches.作者不应该使用“技能”,而是使用性能,这是由于不同复杂度的损失 function 或只是跨时代的训练错误与测试错误的错误。

See here: http://www.frank-dieterle.de/phd/2_8_1.html and https://scikit-learn.org/stable/auto_examples/model_selection/plot_train_error_vs_test_error.html See here: http://www.frank-dieterle.de/phd/2_8_1.html and https://scikit-learn.org/stable/auto_examples/model_selection/plot_train_error_vs_test_error.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM