Skip to content
New issue

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

fix: fixed lint error in adaptive_max_pool3d in layer #28367

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ivy/functional/ivy/experimental/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2207,16 +2207,16 @@ def adaptive_max_pool3d(
Parameters
----------
input
Input array. Must have shape (N, C, D_in, H_in, W_in) or (C, D_in, H_in, W_in) where N is
the batch dimension, C is the feature dimension, and D_in, H_in, and W_in are the 3
spatial dimensions.
Input array. Must have shape (N, C, D_in, H_in, W_in) or (C, D_in, H_in, W_in)
where N is the batch dimension, C is the feature dimension, and D_in, H_in,
and W_in are the 3 spatial dimensions.
output_size
Spatial output size.

Returns
-------
The result of the pooling operation. Will have shape (N, C, D_out, H_out, W_out) or
(C, D_out, H_out, W_out), where D_out, H_out, W_out = `output_size`
The result of the pooling operation. Will have shape (N, C, D_out, H_out, W_out)
or (C, D_out, H_out, W_out), where D_out, H_out, W_out = `output_size`
"""
squeeze = False
if input.ndim == 4:
Expand Down
Loading