We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec71a3 commit 9b21c55Copy full SHA for 9b21c55
1 file changed
computer_vision/pooling_functions.py
@@ -18,7 +18,7 @@ def maxpooling(arr: np.ndarray, size: int, stride: int) -> np.ndarray:
18
>>> maxpooling([[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]], 2, 2)
19
array([[ 6., 8.],
20
[14., 16.]])
21
- >>> maxpooling([[147, 180, 122],[241, 76, 32],[126, 13, 157]], 2, 1)
+ >>> maxpooling([[147,120, 180, 122],[241, 76, 32],[126, 13, 157]], 2, 1)
22
array([[241., 180.],
23
[241., 157.]])
24
"""
0 commit comments