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

Method __init__

tensorflow/python/keras/layers/convolutional.py:2045–2049  ·  view source on GitHub ↗
(self, size=(2, 2, 2), data_format=None, **kwargs)

Source from the content-addressed store, hash-verified

2043 """
2044
2045 def __init__(self, size=(2, 2, 2), data_format=None, **kwargs):
2046 self.data_format = conv_utils.normalize_data_format(data_format)
2047 self.size = conv_utils.normalize_tuple(size, 3, 'size')
2048 self.input_spec = InputSpec(ndim=5)
2049 super(UpSampling3D, self).__init__(**kwargs)
2050
2051 def compute_output_shape(self, input_shape):
2052 input_shape = tensor_shape.TensorShape(input_shape).as_list()

Callers

nothing calls this directly

Calls 2

InputSpecClass · 0.90
__init__Method · 0.45

Tested by

no test coverage detected