Artificial Neural Networks

Overfitting ANNs

overfitt ann overfitt ann
  1. Decrease each weight by some small factor during each iteration (weight decay). Keep them small so as to bias against learning complex surfaces.
  2. Provide a validation set and use it to monitor the error. But, be careful not to find a minimum too early.
  3. With small data sets, use k-fold cross-validation: divide pile into k disjoint sets. Each time one of the sets is the validation and the other k-1 are the training data.

José M. Vidal .

28 of 33