()
| 1832 | |
| 1833 | |
| 1834 | def _get_default_variable_store(): |
| 1835 | store = ops.get_collection(_VARSTORE_KEY) |
| 1836 | if store: |
| 1837 | return store[0] |
| 1838 | store = _VariableStore() |
| 1839 | ops.add_to_collection(_VARSTORE_KEY, store) |
| 1840 | return store |
| 1841 | |
| 1842 | |
| 1843 | @tf_contextlib.contextmanager |
no test coverage detected