MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / local_variables

Method local_variables

tensorflow/python/ops/template.py:453–459  ·  view source on GitHub ↗

Returns the list of global variables created by the Template.

(self)

Source from the content-addressed store, hash-verified

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):

Calls 1

get_collectionMethod · 0.45