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
In following code, pooling_window_shape is a tuple with 0, C.pooling crash.
pooling_window_shape
C.pooling
repo code:
img = np.reshape(np.arange(16, dtype=np.float32), [1, 4, 4]) x = C.input_variable(img.shape) layer = C.pooling(operand=x, pooling_type=C.MAX_POOLING, pooling_window_shape=(2,0), strides=(1), ceil_out_dim=True, include_pad=True, auto_padding=[True]).eval({x : [img]}) print(layer)
The text was updated successfully, but these errors were encountered:
Same problem can be found in C.AVG_POOLING
C.AVG_POOLING
Sorry, something went wrong.
No branches or pull requests
In following code,
pooling_window_shape
is a tuple with 0,C.pooling
crash.repo code:
The text was updated successfully, but these errors were encountered: