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

Method __init__

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

Source from the content-addressed store, hash-verified

1904 """
1905
1906 def __init__(self, size=2, **kwargs):
1907 super(UpSampling1D, self).__init__(**kwargs)
1908 self.size = int(size)
1909 self.input_spec = InputSpec(ndim=3)
1910
1911 def compute_output_shape(self, input_shape):
1912 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