提交 8136339d 编写于 作者: S shippingwang

fix comment bug

上级 928034af
......@@ -77,6 +77,6 @@ AdaptiveMaxPool3d
pool = paddle.nn.AdaptiveMaxPool3d(output_size=4)
out = pool(x)
# out shape: [2, 3, 4, 4, 4]
pool, indices = paddle.nn.AdaptiveMaxPool3d(output_size=3, return_indices=True)
out = pool(x)
pool = paddle.nn.AdaptiveMaxPool3d(output_size=3, return_indices=True)
out, indices = pool(x)
# out shape: [2, 3, 4, 4, 4], indices shape: [2, 3, 4, 4, 4]
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册