MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / __init__

Method __init__

tensorflow/python/keras/layers/convolutional.py:2102–2105  ·  view source on GitHub ↗
(self, padding=1, **kwargs)

Source from the content-addressed store, hash-verified

2100 """
2101
2102 def __init__(self, padding=1, **kwargs):
2103 super(ZeroPadding1D, self).__init__(**kwargs)
2104 self.padding = conv_utils.normalize_tuple(padding, 2, 'padding')
2105 self.input_spec = InputSpec(ndim=3)
2106
2107 def compute_output_shape(self, input_shape):
2108 if input_shape[1] is not None:

Callers

nothing calls this directly

Calls 2

InputSpecClass · 0.90
__init__Method · 0.45

Tested by

no test coverage detected