-
I am running the CNN - finetuning notebook and while training the model I get the below issue. It seems for alternate epochs, there accuracy is completely 0 which doesn't make any sense. Has anyone face this issue? I tried this in both colab and kaggle, both give the same output tf version - 2.17.0 Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/efficientnet_v2/efficientnetv2-b0_notop.h5 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey, I ran into the same problem. I tried a few things and at the end I commented out the steps_per_epoch in the .fit function, then the model runs without a problem. Apparently it has something to do with the version 2,17.0. If you run it with version 2.15 it should also work. |
Beta Was this translation helpful? Give feedback.
Hey, I ran into the same problem. I tried a few things and at the end I commented out the steps_per_epoch in the .fit function, then the model runs without a problem. Apparently it has something to do with the version 2,17.0. If you run it with version 2.15 it should also work.