当前位置:网站首页>TensorFlow2 study notes: 6. Overfitting and underfitting, and their mitigation solutions
TensorFlow2 study notes: 6. Overfitting and underfitting, and their mitigation solutions
2022-08-04 06:05:00 【Live up to [email protected]】
1. What is overfitting and underfitting
There are two most common results that may be encountered in both machine learning and deep learning modeling, one is called over-fitting (over-fitting)The other is called underfittingUnder-fitting.
Overfitting
Definition: Overfitting refers to the fact that the model fits the training data too well, which is reflected in the evaluation indicators, that is, the model performs very well on the training set, but in thePoor performance on test set and new data.In layman's terms, overfitting means that the model learns the data so thoroughly that it also learns the features of the noisy data, which will lead to inability to identify well in the later testing.The data, that is, cannot be classified correctly, and the generalization ability of the model is too poor.
Underfitting
Definition: Underfitting refers to the situation that the model does not perform well during training and prediction, which is reflected in the evaluation indicators, which is the performance of the model on the training set and test setNeither bad.Underfitting means that the model does not capture the data features well and cannot fit the data well.
Intuitive performance, as shown below:
Three Fit States in Regression Algorithms
Three Fit States in Classification Algorithms
2. Overfitting solution
- Cleaning data
- Increase the training set
- Use regularization
- Increase the regularization parameter
3. Underfitting solution
- Cleaning data
- Increase the training set
- Use regularization
- Increase the regularization parameter
4. Regularization and how to use it

- L1 regularization: sum the absolute values of all parameters w.There is a high probability that many parameters will become 0, so this method can reduce the complexity by sparse parameters (that is, reducing the number of parameters).
- L2 regularization: sum the squared absolute values of all parameters w.Make the parameter close to 0 but not 0, so this method can reduce the complexity by reducing the parameter value.Reduce overfitting due to noise in the dataset.

版权声明
本文为[Live up to [email protected]]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/216/202208040525327629.html
边栏推荐
猜你喜欢
随机推荐
8.30难题留坑:计数器问题和素数等差数列问题
进程、线程、协程的区别和联系?
yolov3中数据读入(一)
【go语言入门笔记】13、 结构体(struct)
EPSON RC+ 7.0 使用记录一
剑指 Offer 20226/30
postgresql中创建新用户等各种命令
剑指 Offer 2022/7/2
组原模拟题
MySql--存储引擎以及索引
read and study
剑指 Offer 2022/7/8
智能合约安全——delegatecall (1)
Install dlib step pit record, error: WARNING: pip is configured with locations that require TLS/SSL
TensorFlow2学习笔记:6、过拟合和欠拟合,及其缓解方案
多项式回归(PolynomialFeatures)
浏览器中的同源策略
(九)哈希表
剑指 Offer 2022/7/1
Matplotlib中的fill_between;np.argsort()函数









