From 1f7c0f917e3f4163d437ea3aa64d8246c2eba40a Mon Sep 17 00:00:00 2001 From: Kongsea Date: Thu, 27 Jul 2017 00:59:48 -0500 Subject: [PATCH] Refine docstrings (#11800) --- .../contrib/keras/python/keras/layers/convolutional.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tensorflow/contrib/keras/python/keras/layers/convolutional.py b/tensorflow/contrib/keras/python/keras/layers/convolutional.py index e0399590415..73e87f68dd3 100644 --- a/tensorflow/contrib/keras/python/keras/layers/convolutional.py +++ b/tensorflow/contrib/keras/python/keras/layers/convolutional.py @@ -619,11 +619,12 @@ class Conv3DTranspose(tf_convolutional_layers.Conv3D, Layer): filters: Integer, the dimensionality of the output space (i.e. the number of output filters in the convolution). kernel_size: An integer or tuple/list of 3 integers, specifying the - width and height of the 3D convolution window. + depth, height and width of the 3D convolution window. Can be a single integer to specify the same value for all spatial dimensions. strides: An integer or tuple/list of 3 integers, - specifying the strides of the convolution along the width and height. + specifying the strides of the convolution along the depth, height + and width. Can be a single integer to specify the same value for all spatial dimensions. Specifying any stride value != 1 is incompatible with specifying -- GitLab