We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With MaxPooling2D with strides, size of image reduces in following manner
MaxPooling2D
(32, 24, 3) (?, 16, 12, 64) (?, 8, 6, 128) (?, 4, 3, 256) (?, 2, 1, 512)
which in next step generates an error
ValueError: Negative dimension size caused by subtracting 2 from 1 for 'max_pooling2d_5/MaxPool' (op: 'MaxPool') with input shapes: [?,2,1,512].
The text was updated successfully, but these errors were encountered:
32x24 might be too small, it was chosen arbitrarily. We should investigate what would be the best size.
Sorry, something went wrong.
Generally for pretrained models we use size of 224x224 or 227x227. We can think about it.
No branches or pull requests
With
MaxPooling2D
with strides, size of image reduces in following mannerwhich in next step generates an error
The text was updated successfully, but these errors were encountered: