here are the file to check error issue https://colab.research.google.com/drive/1vDCkBLIuhV-tHfW0jegs5ExyubEYl-Z4?usp=drive_link
Hi @Palak_Talreja, I have gone through your code and i observed that the test dataset shape was (None, None, None, None, None, None, None, None, None, 224, 224, 3). But you have defined the model input as (224,224, 3). So there is a shape mismatch and is causing the error. You have to pass the test data having shape (batch_size, 224,224,3) to get the result. Thank You.