(self, inputs)
| 182 | class MyLayer(base_layers.Layer): |
| 183 | |
| 184 | def call(self, inputs): |
| 185 | return math_ops.square(inputs) |
| 186 | |
| 187 | layer = MyLayer(name='my_layer') |
| 188 | inputs = random_ops.random_uniform((5,), seed=1) |
nothing calls this directly
no test coverage detected