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
Trying to work with Blobs with num_axes()>4, Pooling layer exits with the following error:
F0225 11:36:13.204582 23703 pooling_layer.cpp:81] Check failed: 4 == bottom[0]->num_axes() (4 vs. 5) Input must have 4 axes, corresponding to (num, channels, height, width)
This check: CHECK_EQ(4, bottom[0]->num_axes()) seems to safeguard pooling from working with "non-legacy" blobs.
CHECK_EQ(4, bottom[0]->num_axes())
Can this layer be extended (like conv layer) to handle N-D Blobs as well?
Thank you very much, Shai
The text was updated successfully, but these errors were encountered:
See #2442. It needs to be revived and rebased to have N-D pooling like our N-D convolution.
Sorry, something went wrong.
@shelhamer thank you for your reference. I'll look into it!
No branches or pull requests
Trying to work with Blobs with num_axes()>4, Pooling layer exits with the following error:
This check:
CHECK_EQ(4, bottom[0]->num_axes())
seems to safeguard pooling from working with "non-legacy" blobs.Can this layer be extended (like conv layer) to handle N-D Blobs as well?
Thank you very much,
Shai
The text was updated successfully, but these errors were encountered: