I want to use early stopping method to avoid over fitting in neural network. I have divided my dataset to 60-20-20
60 - training 20 - validation set 20 - test set
I have a doubt while implementing early stopping.
- We update weights for one epoch using training set. We got the error in network using training set.
- We need to compute error for the validation set. Should we average out all the error for each validation instance?? E.g Lets say I have 200 validation instances. Since I am not updating weights, I will compute error for each instance. So should we average over all the validation instance and report that as the validation error??
Thanks, Atish