I am training a network to solve a regression problem using Keras. During training, the loss of my model goes directly from 7 to more than 300000 dramatically. Here is the training output:
I wonder what could be the cause of this problem? Thanks
I am training a network to solve a regression problem using Keras. During training, the loss of my model goes directly from 7 to more than 300000 dramatically. Here is the training output:
I wonder what could be the cause of this problem? Thanks
Based on my experience, just saying what i have seen, a few things could cause this: 1. learning rate. if it's too large, it could cause rising loss; just make it smaller, magnitudes smallers 2. in case of RNN, it could all blow up, weights, gradients, loss; there's paper published dealing with that.