reduce line length

moved half of line 377 onto the next line to shorten line length
This commit is contained in:
Joseph-Rance 2020-01-14 18:18:40 +00:00 committed by GitHub
parent 33ea90beac
commit 0efd877c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -374,7 +374,8 @@ class MaxPooling2D(Pooling2D):
Usage Example:
>>> model = tf.keras.models.Sequential()
>>> model.add(tf.keras.layers.Conv2D(32, kernel_size=(3, 3), input_shape=(28,28,1)))
>>> model.add(tf.keras.layers.Conv2D(32, kernel_size=(3, 3),
... input_shape=(28,28,1)))
>>> model.add(tf.keras.layers.MaxPooling2D(pool_size=(2, 2)))
For example, for stride=(1,1) and padding="same":