Skip to content

Commit

Permalink
fix: fixed lint error in adaptive_max_pool3d in layer (ivy-llc#28367)
Browse files Browse the repository at this point in the history
fixed
  • Loading branch information
samthakur587 authored and Kacper-W-Kozdon committed Feb 22, 2024
1 parent d9c88c1 commit b0e0def
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit b0e0def

Please sign in to comment.