提交 ccecd39d 编写于 作者: K Keunwoo Choi 提交者: François Chollet

Correct the DepthwiseConv2d docstrings - output shape (#13225)

上级 280e5b72
......@@ -1759,10 +1759,10 @@ class DepthwiseConv2D(Conv2D):
# Output shape
4D tensor with shape:
`(batch, filters, new_rows, new_cols)`
`(batch, channels * depth_multiplier, new_rows, new_cols)`
if `data_format` is `"channels_first"`
or 4D tensor with shape:
`(batch, new_rows, new_cols, filters)`
`(batch, new_rows, new_cols, channels * depth_multiplier)`
if `data_format` is `"channels_last"`.
`rows` and `cols` values might have changed due to padding.
"""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册