![]() |
Returns all variables in the MODEL_VARIABLES collection.
Aliases:
tf.model_variables(scope=None)
Args:
scope
: (Optional.) A string. If supplied, the resulting list is filtered to include only items whosename
attribute matchesscope
usingre.match
. Items without aname
attribute are never returned if a scope is supplied. The choice ofre.match
means that ascope
without special tokens filters by prefix.
Returns:
A list of local Variable objects.