Skip to content

Commit

Permalink
Improve the docstring of Conv3DTranspose (keras-team#10342)
Browse files Browse the repository at this point in the history
* Add depth as third dimension in docstring of
  Conv3DTranspose in convolutional.py in keras.layers
  • Loading branch information
Anirudh-Swaminathan authored and fchollet committed Jun 2, 2018
1 parent f89b339 commit 52e3f98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keras/layers/convolutional.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 52e3f98

Please sign in to comment.