Keraflow
Deep Learning for Python.
|
Zero-padding layer for (input_depth, input_x, input_y, input_z) inputs. More...
Public Member Functions | |
def | __init__ |
Zero-padding layer for (input_depth, input_x, input_y, input_z) inputs.
(nb_samples, input_depth, input_x, input_y, input_z)
(nb_samples, input_depth, input_x+2*pad[0], input_y+2*pad[1], input_z+2*pad[2])
def keraflow.layers.convolution.ZeroPadding3D.__init__ | ( | self, | |
pad = (1,1 , |
|||
kwargs | |||
) |
pad | tuple. Number of zeros to pad at each dimension. For example (2, 2, (1,3)) will pad 2 zeros at the beginning and the end of the first dimension and the second dimension, and pad 1 zero at the beginning and 3 zeros at the end of the third dimension. |
kwargs | see Layer.__init__. |