How to Improve Deep Learning Model Robustness by Adding Noise - MachineLearningMastery.com

Adding noise to an underconstrained neural network model with a small training dataset can have a regularizing effect and reduce overfitting. Keras supports the addition of Gaussian noise via a sep...

By · · 1 min read
How to Improve Deep Learning Model Robustness by Adding Noise - MachineLearningMastery.com

Source: MachineLearningMastery.com

Adding noise to an underconstrained neural network model with a small training dataset can have a regularizing effect and reduce overfitting. Keras supports the addition of Gaussian noise via a separate layer called the GaussianNoise layer. This layer can be used to add noise to an existing model. In this tutorial, you will discover how […]