From 52e3f9835c1a25a8b895773f64524e27a5ae10c0 Mon Sep 17 00:00:00 2001 From: Anirudh Swaminathan Date: Sun, 3 Jun 2018 01:22:09 +0800 Subject: [PATCH] Improve the docstring of Conv3DTranspose (#10342) * Add depth as third dimension in docstring of Conv3DTranspose in convolutional.py in keras.layers --- keras/layers/convolutional.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keras/layers/convolutional.py b/keras/layers/convolutional.py index 795a389312a..31beffaa063 100644 --- a/keras/layers/convolutional.py +++ b/keras/layers/convolutional.py @@ -860,12 +860,12 @@ class Conv3DTranspose(Conv3D): 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 - height and width 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 height and width. + 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