(self, inputs)
| 2586 | self.built = True |
| 2587 | |
| 2588 | def call(self, inputs): |
| 2589 | if context.executing_eagerly(): |
| 2590 | return self._defun_call(inputs) |
| 2591 | return self._make_op(inputs) |
| 2592 | |
| 2593 | def _make_node_def(self, graph): |
| 2594 | node_def = node_def_pb2.NodeDef() |
nothing calls this directly
no test coverage detected