(self, inputs)
| 3593 | trainable=False) |
| 3594 | |
| 3595 | def call(self, inputs): |
| 3596 | # Make sure update isn't run twice. |
| 3597 | self.add_update(lambda: state_ops.assign_add(self.counter, 1)) |
| 3598 | return math_ops.cast(self.counter, inputs.dtype) * inputs |
| 3599 | |
| 3600 | |
| 3601 | class NestedUpdateLayer(keras.layers.Layer): |
nothing calls this directly
no test coverage detected