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

Method global_variables

tensorflow/python/ops/template.py:444–450  ·  view source on GitHub ↗

Returns the list of global variables created by the Template.

(self)

Source from the content-addressed store, hash-verified

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

Callers 15

mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
_generate_saved_modelFunction · 0.45
test_global_variableMethod · 0.45

Calls 1

get_collectionMethod · 0.45