(self, size=2, **kwargs)
| 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() |