Loss of Neural network is constant

I’m trying to apply the facenet paper myself.
I’ve stumbled upon a problem, My loss is always constant.
image
This is my code for training my NN
image
This is my forward and loss function
For some reason the loss is always coming out to be constant and the model isn’t learning.
This can be seen in the image given below that the loss is constant in every epoch.
image
Please if someone knows the solution, do tell me as I require to complete the project in a very small time.

@ptrblck sir, if you can help me with this, I’ll be very grateful to you.
Thanks.

Try adding optimizer.zero_grad() in the batch loop

In your code your’e accumulating gradients in the batch loop . So you need to clear gradients in the batch loop rather than in the epoch loop

1 Like

Thank you @Chirath_Pansilu.
It worked.

Hey there, where did you place the optimizer.zero_grad() line in the batch loop? I am having the same issue, however I have the zero_grad() function being called.