Returns the list of variables created by the Template.
(self)
| 682 | |
| 683 | @property |
| 684 | def variables(self): |
| 685 | """Returns the list of variables created by the Template.""" |
| 686 | # Currently there is no local variable in Eager mode. |
| 687 | if not self._variables_created: |
| 688 | return [] |
| 689 | return self._template_store.variables() |
| 690 | |
| 691 | @property |
| 692 | def trainable_variables(self): |