Techniques for preventing overfitting in training Deep Neural Networks

本文深入探讨了深度神经网络防止过拟合的关键技术,包括数据增强、模型正则化、dropout、dropconnection等方法。这些技术通过增加模型的泛化能力,帮助神经网络在训练过程中避免过度依赖于训练数据的细节特征,从而提高模型在未知数据上的表现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Techniques for preventing overfitting in training Deep Neural Networks

Data

Data Augmentation

  • data cropping
  • adding noise to data
  • affine warping to data.

Model Regularization

Dropout

Consider deep neural networks that contain a series of hidden layers h = {h1,..., hL}, and predict output y given input x. Dropout is a technique that trains an ensemble of models consisting a subset of variables in h, or even x. On each presentation of a training sample, we train a different sub-model taking a random subset of variable h. Technically speaking, we randomly set hidden variables to zeros according to some probabilities. Thus each sample sees a different model to prevent co-adaptation of features.

Dropout training is similar to bagging, where many different models are trained on different subsets of the data. Dropout differs from bagging in that each model is trained for only one step and all the models share parameters.

  • G. E. Hinton. Improving neural networks by preventing co-adaptation of feature detectors

Maxout

Maxout is also a technique for model-averaging, which a natural companion to dropout. Maxout takes the max of a set of inputs. It's particular applicable for convolutional neural networks. In a convolutional neural network , a maxout feature map can be constructed by taking the maximum across k affine feature maps (i.e. pool across channels).

  • Ian J. Goodfellow, Yoshua Bengio. Maxout Networks

Drop connection

DropConnect is the generalization of Dropout in which each connection, rather than each output unit, can be dropped with probability. DropConnect is similar to Dropout as it introduces dynamic sparsity within the model, but differs in that the sparsity is on the weights W, rather than the output vectors of a layer. In other words, the fully connected layer with DropConnect becomes a sparsely connected layer in which the connections are chosen at random during the training stage.

  • Li Wan. Regularization of Neural Networks using DropConnect
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值