I am getting very horrible accuracy of about 25% while Fine Tuning. Why I am getting this type to accuracy?
Accuracy In Fine Tuning
Please Share your ipynb file using google drive.
I have used google colab
Don’t need to normalize images in this case, I just removed division by 255.0 and got 95% validation accuracy in first 3-4 epochs. The reason behind not normalizing the image data is that, resnet50 model already contains Batch Normalization layer, so it automatically normalizes the outputs of previous layers, You can read more about batch normalization on blogs.
Hope this helped you
That’s why i was getting very low Accuracy. Now i have removed that part and got good result. Thank you sir.