Reputation: 1593
Is it possible that the MSE increases during training?
I'm currently calculating the MSE of the validation set per epoch and at a certrain point, the MSE starts to increase instead of decreasing. Does someone has an explanation for this behavior?
Upvotes: 2
Views: 1737
Reputation: 1282
Answering your question: Yes, it is possible.
If you are using regularization or estochastic training it is normal some ups and downs on the MSE while training.
Some possible reasons to the problem
You are using a learning rate too high, which let to the problem of overshooting the local minima of the cost function.
The neural network is overfitting. Traning too much and loosing its capabilities to generalize.
What you can try:
When this starts to happen, reduce your learning rate.
Apply some kind of regularization on your network, like dropout, to avoid overfitting.
Upvotes: 5