Change incorrect padding comment.

The padded area is not zero-filled for pooling ops, despite the comment.

PiperOrigin-RevId: 307893632
Change-Id: I570773b6bbbd6f79f738e3930828456a3d77252d
This commit is contained in:
Reed Wanderman-Milne 2020-04-22 14:02:12 -07:00 committed by TensorFlower Gardener
parent 5a07c487f6
commit 836102fbe3

View File

@ -38,7 +38,8 @@ class NodeDef;
// dimensions as the input.
// EXPLICIT: The user specifies the pad values in the explicit_paddings
// attribute.
// The padded area is zero-filled.
// The padded area is typically zero-filled. For pooling ops, the padded area is
// instead ignored. For max pool, this is equivalent to padding with -infinity.
enum Padding {
VALID = 1, // No padding.
SAME = 2, // Input and output layers have the same size.