(self, input_shape)
| 476 | class MyLayer(base_layers.Layer): |
| 477 | |
| 478 | def build(self, input_shape): |
| 479 | self.my_var = self.add_variable('my_var', (), dtypes.float32) |
| 480 | self.built = True |
| 481 | |
| 482 | def call(self, inputs): |
| 483 | return math_ops.multiply(inputs, self.my_var, name='my_op') |
nothing calls this directly
no test coverage detected