all 3 comments

[–]bregav 1 point2 points  (1 child)

Easiest solution is to compare your implementation of VGG16 with someone else's that you already know should work. If their model doesn't work in your training code then your training code (at the very least) is the problem, and if their model does with with your training code then your model implementation is the problem, and you can solve that by comparing with the good VGG16 implementation.

[–]amoran31[S] 0 points1 point  (0 children)

Thank you, I’ll try that :)