()
| 488 | |
| 489 | |
| 490 | def get_graph(): |
| 491 | if context.executing_eagerly(): |
| 492 | global _GRAPH |
| 493 | if _GRAPH is None: |
| 494 | _GRAPH = func_graph.FuncGraph('keras_graph') |
| 495 | return _GRAPH |
| 496 | else: |
| 497 | return ops.get_default_graph() |
| 498 | |
| 499 | |
| 500 | @tf_contextlib.contextmanager |
no test coverage detected