Returns the list of trainable variables created by the Template.
(self)
| 425 | |
| 426 | @property |
| 427 | def trainable_variables(self): |
| 428 | """Returns the list of trainable variables created by the Template.""" |
| 429 | if self._variables_created: |
| 430 | return ops.get_collection(ops.GraphKeys.TRAINABLE_VARIABLES, |
| 431 | self.variable_scope_name) |
| 432 | else: |
| 433 | return [] |
| 434 | |
| 435 | @property |
| 436 | def non_trainable_variables(self): |