Returns the list of trainable variables created by the Template.
(self)
| 690 | |
| 691 | @property |
| 692 | def trainable_variables(self): |
| 693 | """Returns the list of trainable variables created by the Template.""" |
| 694 | # Currently there is no local variable in Eager mode. |
| 695 | if not self._variables_created: |
| 696 | return [] |
| 697 | return self._template_store.trainable_variables() |
| 698 | |
| 699 | @property |
| 700 | def non_trainable_variables(self): |
nothing calls this directly
no test coverage detected