Searched refs:var_scope (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/contrib/framework/python/framework/ |
D | checkpoint_utils.py | 141 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/ |
D | rev_block_lib.py | 529 var_scope, argument 546 with variable_scope.variable_scope(var_scope, reuse=True): 621 var_scope=vs,
|
/external/tensorflow/tensorflow/python/distribute/ |
D | distribute_lib.py | 170 var_scope=None, argument 175 self._var_scope = var_scope
|
/external/bcc/src/cc/frontends/b/ |
D | parser.yy | 55 Scopes::VarScope *var_scope; 99 %type <var_scope> enter_varscope exit_varscope
|
/external/tensorflow/tensorflow/python/ops/ |
D | template.py | 468 def var_scope(self): member in Template
|
/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
D | variables_test.py | 273 with variable_scope.variable_scope('A') as var_scope: 277 set([a, b]), set(variables_lib2.get_variables(var_scope)))
|
/external/tensorflow/ |
D | RELEASE.md | 1488 * Template.`var_scope` property renamed to `.variable_scope`
|