Returns the list of global variables created by the Template.
(self)
| 442 | |
| 443 | @property |
| 444 | def global_variables(self): |
| 445 | """Returns the list of global variables created by the Template.""" |
| 446 | if self._variables_created: |
| 447 | return ops.get_collection(ops.GraphKeys.GLOBAL_VARIABLES, |
| 448 | self.variable_scope_name) |
| 449 | else: |
| 450 | return [] |
| 451 | |
| 452 | @property |
| 453 | def local_variables(self): |