提交 6aace305 编写于 作者: E ebatuhankaynak 提交者: Frédéric Branchaud-Charron

Update convolutional.py (#10452)

Changed 
"# now model.output_shape == (None, 20, 16. 64)" 
to 
"# now model.output_shape == (None, 20, 16, 64)"

(There is a dot instead of comma).
上级 2d183db0
......@@ -2326,7 +2326,7 @@ class Cropping2D(Layer):
# now model.output_shape == (None, 24, 20, 3)
model.add(Conv2D(64, (3, 3), padding='same'))
model.add(Cropping2D(cropping=((2, 2), (2, 2))))
# now model.output_shape == (None, 20, 16. 64)
# now model.output_shape == (None, 20, 16, 64)
```
"""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册