当前位置:网站首页>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
边栏推荐
猜你喜欢
随机推荐
flink on yarn指定第三方jar包
自动化运维工具Ansible(5)流程控制
彻底搞懂箱形图分析
剑指 Offer 2022/7/4
对象存储-分布式文件系统-MinIO-1:概念
Kubernetes基本入门-名称空间资源(三)
BUUCTF——MISC(一)
剑指 Offer 2022/7/12
两个APP进行AIDL通信
flink自定义轮询分区产生的问题
【CV-Learning】语义分割
Shell(2)数值运算与判断
ISCC2021———MISC部分复现(练武)
Kubernetes基本入门-集群资源(二)
Matplotlib中的fill_between;np.argsort()函数
编程Go:内置打印函数 print、println 和 fmt 包中 fmt.Print、fmt.Println 的区别
ISCC-2022
双重指针的使用
视图、存储过程、触发器
组原模拟题








