(self)
| 1886 | return with_variable_store(self._store) |
| 1887 | |
| 1888 | def variables(self): |
| 1889 | return sorted(self._store._vars.values(), key=lambda x: x.name) # pylint: disable=protected-access |
| 1890 | |
| 1891 | def trainable_variables(self): |
| 1892 | # pylint: disable=protected-access |