How do I solve this on CNN on real image files-creating the model?
I’m encountering a ValueError in my Keras model. I’m trying to load a pre-trained model using load_model
, but I’m getting the error ValueError: Kernel shape must have the same length as input
. I’ve specified the input shape (130, 130, 3)
, but the error persists. Any suggestions on how to resolve this issue?