This is where the layer's logic lives. Arguments: inputs: Input tensor, or list/tuple of input tensors. **kwargs: Additional keyword arguments. Returns: A tensor or list/tuple of tensors.
(self, inputs, **kwargs)
| 387 | |
| 388 | @doc_controls.for_subclass_implementers |
| 389 | def call(self, inputs, **kwargs): # pylint: disable=unused-argument |
| 390 | """This is where the layer's logic lives. |
| 391 | |
| 392 | Arguments: |
| 393 | inputs: Input tensor, or list/tuple of input tensors. |
| 394 | **kwargs: Additional keyword arguments. |
| 395 | |
| 396 | Returns: |
| 397 | A tensor or list/tuple of tensors. |
| 398 | """ |
| 399 | return inputs |
| 400 | |
| 401 | @doc_controls.for_subclass_implementers |
| 402 | def add_weight(self, |