You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got the following error message when running the finetune.py script:
ValueError: Unknown layer: 'PaddedConv2D'. Please ensure you are using a `keras.utils.custom_object_scope` and that this object is included in the scope. See https://www.tensorflow.org/guide/keras/save_and_serialize#registering_the_custom_object for details.
The line that got this issue is this line in the code: link
Based on my understanding, the built-in copy function cannot copy keras-cv PaddedConv2D layer. After I modified that line to this:
I got the following error message when running the
finetune.py
script:The line that got this issue is this line in the code: link
Based on my understanding, the built-in copy function cannot copy keras-cv
PaddedConv2D
layer. After I modified that line to this:The script can run now.
Here are my machine specs:
The text was updated successfully, but these errors were encountered: