Home
last modified time | relevance | path

Searched refs:var_scope (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/contrib/framework/python/framework/
Dcheckpoint_utils.py141 def _collect_partitioned_variable(name, var_scope): argument
142 if name + "/part_0" in var_scope._vars:
145 while name + "/part_%d" % i in var_scope._vars:
146 var.append(var_scope._vars[name + "/part_%d" % i])
232 var_scope = vs._get_default_variable_store()
234 var = var_scope._vars.get(current_var_or_name, None)
237 var = _collect_partitioned_variable(current_var_or_name, var_scope)
274 for var_name in var_scope._vars:
294 var = var_scope._vars.get(var_name, None)
296 var = _collect_partitioned_variable(var_name, var_scope)
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Drev_block_lib.py529 var_scope, argument
546 with variable_scope.variable_scope(var_scope, reuse=True):
621 var_scope=vs,
/external/tensorflow/tensorflow/python/distribute/
Ddistribute_lib.py170 var_scope=None, argument
175 self._var_scope = var_scope
/external/bcc/src/cc/frontends/b/
Dparser.yy55 Scopes::VarScope *var_scope;
99 %type <var_scope> enter_varscope exit_varscope
/external/tensorflow/tensorflow/python/ops/
Dtemplate.py468 def var_scope(self): member in Template
/external/tensorflow/tensorflow/contrib/framework/python/ops/
Dvariables_test.py273 with variable_scope.variable_scope('A') as var_scope:
277 set([a, b]), set(variables_lib2.get_variables(var_scope)))
/external/tensorflow/
DRELEASE.md1488 * Template.`var_scope` property renamed to `.variable_scope`