Returns the list of global variables created by the Template.
(self)
| 451 | |
| 452 | @property |
| 453 | def local_variables(self): |
| 454 | """Returns the list of global variables created by the Template.""" |
| 455 | if self._variables_created: |
| 456 | return ops.get_collection(ops.GraphKeys.LOCAL_VARIABLES, |
| 457 | self.variable_scope_name) |
| 458 | else: |
| 459 | return [] |
| 460 | |
| 461 | @property |
| 462 | def weights(self): |