From d3fa99b2a807a0bc40477b293fb5b0a7a8dc3d66 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Sat, 10 Oct 2020 00:21:59 -0700 Subject: [PATCH] Fixes GitHub 43886 PiperOrigin-RevId: 336428634 Change-Id: I4881dc852d2d8bfb78f38c1b9896fde95b9cf151 --- tensorflow/python/keras/layers/convolutional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/keras/layers/convolutional.py b/tensorflow/python/keras/layers/convolutional.py index f331b507422..c383ef2b8da 100644 --- a/tensorflow/python/keras/layers/convolutional.py +++ b/tensorflow/python/keras/layers/convolutional.py @@ -575,7 +575,7 @@ class Conv2D(Conv): specify the same value for all spatial dimensions. Specifying any stride value != 1 is incompatible with specifying any `dilation_rate` value != 1. padding: one of `"valid"` or `"same"` (case-insensitive). - `"valid"` means no padding. `"same"` results in zero padding evenly to + `"valid"` means no padding. `"same"` results in padding evenly to the left/right or up/down of the input such that output has the same height/width dimension as the input. data_format: A string, one of `channels_last` (default) or `channels_first`.