Keraflow
Deep Learning for Python.
 All Classes Namespaces Functions Pages
keraflow.layers.convolution.ZeroPadding3D Class Reference

Zero-padding layer for (input_depth, input_x, input_y, input_z) inputs. More...

Inheritance diagram for keraflow.layers.convolution.ZeroPadding3D:
keraflow.layers.convolution.ZeroPaddingBase

Public Member Functions

def __init__
 

Detailed Description

Zero-padding layer for (input_depth, input_x, input_y, input_z) inputs.

  • input_shape: 5D, (nb_samples, input_depth, input_x, input_y, input_z)
  • output_shape: 5D, (nb_samples, input_depth, input_x+2*pad[0], input_y+2*pad[1], input_z+2*pad[2])

Constructor & Destructor Documentation

def keraflow.layers.convolution.ZeroPadding3D.__init__ (   self,
  pad = (1,1,
  kwargs 
)
Parameters
padtuple. 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.
kwargssee Layer.__init__.