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'm trying to extract features from the last convolutional layer of ResNet101, from the image at its original dimension.
I obtain this error: ValueError: The shape of the input to "Flatten" is not fully defined (got (None, None, 2048). Make sure to pass a complete "input_shape" or "batch_input_shape" argument to the first layer in your model.
Here is my call: base_model = resnet101_model(None, None, 3, 0)
Can you help me?
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to extract features from the last convolutional layer of ResNet101, from the image at its original dimension.
I obtain this error:
ValueError: The shape of the input to "Flatten" is not fully defined (got (None, None, 2048). Make sure to pass a complete "input_shape" or "batch_input_shape" argument to the first layer in your model.
Here is my call:
base_model = resnet101_model(None, None, 3, 0)
Can you help me?
The text was updated successfully, but these errors were encountered: