AI - 过拟合 overfitting
Reference How to prevent the overfitting What is the overfitting Overfitting definition Diagram The reason of the overfiting The data is limited Model is too complicated How to avoid the overfitting Argument data Increase the data during the training Argument the data For example: 在物体分类(object recognition)问题中,数据扩增已经成为一项特殊的有效的技术。物体在图像中的位置、姿态、尺度,整体图片敏感度等都不会影响分类结果,所以我们就可以通过图像平移、翻转、缩放、切割等手段将数据库成倍扩充。或者在语音识别(speech recognition)中,加入噪音也被看做是一种数据扩增方式。 Enhance the model 奥卡姆剃刀原则,鼓励 简单模型 。(过拟合的模型往往是复杂的) Dropout : 就是让神经网络在前向传播的时候,让某个神经元的激活值以一定的概率P,让他停止工作,也就是将这个神经元的激活值变为0。Dropout是非常有效的减少过拟合的方法