Home
last modified time | relevance | path

Searched refs:VariableAggregation (Results 1 – 25 of 439) sorted by relevance

12345678910>>...18

/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.-variable-aggregation.pbtxt1 path: "tensorflow.VariableAggregation"
3 is_instance: "<enum \'VariableAggregation\'>"
6 mtype: "<enum \'VariableAggregation\'>"
10 mtype: "<enum \'VariableAggregation\'>"
14 mtype: "<enum \'VariableAggregation\'>"
18 mtype: "<enum \'VariableAggregation\'>"
22 mtype: "<enum \'VariableAggregation\'>"
Dtensorflow.keras.optimizers.-optimizer.pbtxt24 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-nadam.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-adagrad.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
/external/tensorflow/tensorflow/python/distribute/
Dvalues_test.py176 None, v, variable_scope.VariableAggregation.SUM)
303 variable_scope.VariableAggregation.SUM)
375 None, (v,), variable_scope.VariableAggregation.MEAN)
532 distribution, (v,), variable_scope.VariableAggregation.MEAN)
576 aggregation=variable_scope.VariableAggregation.MEAN,
606 aggregation=variable_scope.VariableAggregation.SUM,
763 aggregation=variables_lib.VariableAggregation.ONLY_FIRST_REPLICA)
789 1, aggregation=variables_lib.VariableAggregation.MEAN)
836 variable_scope.VariableAggregation.SUM)
841 self.assertEqual(variable_scope.VariableAggregation.SUM,
[all …]
Dmirrored_variable_test.py253 aggregation=variable_scope.VariableAggregation.SUM)
258 aggregation=variable_scope.VariableAggregation.MEAN)
275 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation)
278 self.assertEqual(variable_scope.VariableAggregation.MEAN, v3.aggregation)
291 aggregation=variable_scope.VariableAggregation.SUM)
295 aggregation=variable_scope.VariableAggregation.MEAN)
313 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation)
316 self.assertEqual(variable_scope.VariableAggregation.MEAN,
322 aggregation = variable_scope.VariableAggregation.ONLY_FIRST_REPLICA
476 aggregation=variable_scope.VariableAggregation.SUM)
[all …]
Dreduce_util.py43 variable_scope.VariableAggregation.SUM: ReduceOp.SUM,
44 variable_scope.VariableAggregation.MEAN: ReduceOp.MEAN,
Dparameter_server_strategy_test.py148 aggregation=variable_scope.VariableAggregation.SUM)
162 aggregation=variable_scope.VariableAggregation.SUM)
172 aggregation=variable_scope.VariableAggregation.SUM)
230 aggregation=variable_scope.VariableAggregation.SUM,
243 aggregation=variable_scope.VariableAggregation.SUM,
303 aggregation=variable_scope.VariableAggregation.SUM)
315 aggregation=variable_scope.VariableAggregation.SUM)
326 aggregation=variable_scope.VariableAggregation.SUM)
384 aggregation=variable_scope.VariableAggregation.SUM)
387 aggregation=variable_scope.VariableAggregation.SUM)
[all …]
Dvalues.py687 if aggregation == vs.VariableAggregation.ONLY_FIRST_REPLICA:
758 aggregation = kwargs.pop("aggregation", vs.VariableAggregation.NONE)
760 if aggregation not in (vs.VariableAggregation.NONE,
761 vs.VariableAggregation.SUM,
762 vs.VariableAggregation.MEAN,
763 vs.VariableAggregation.ONLY_FIRST_REPLICA):
839 if self._aggregation == vs.VariableAggregation.NONE:
851 if self._aggregation == vs.VariableAggregation.MEAN and (
1013 if self._sync_on_read_variable.aggregation == vs.VariableAggregation.SUM:
1042 if self._aggregation == vs.VariableAggregation.SUM:
[all …]
Dparameter_server_strategy.py393 aggregation = kwargs.pop("aggregation", vs.VariableAggregation.NONE)
395 vs.VariableAggregation.NONE,
396 vs.VariableAggregation.SUM,
397 vs.VariableAggregation.MEAN,
398 vs.VariableAggregation.ONLY_FIRST_REPLICA
Dmoving_averages_test.py184 aggregation=variables.VariableAggregation.MEAN)
209 aggregation=variables.VariableAggregation.MEAN)
228 aggregation=variables.VariableAggregation.MEAN)
Ddistribute_lib_test.py172 variable_scope.VariableAggregation.NONE)
192 variable_scope.VariableAggregation.NONE)
250 variable_scope.VariableAggregation.MEAN)
257 aggregation=variable_scope.VariableAggregation.MEAN))
272 variable_scope.VariableAggregation.NONE)
Dmirrored_strategy_test.py632 1.0, name="foo", aggregation=variable_scope.VariableAggregation.SUM)
664 1.0, name="foo", aggregation=variable_scope.VariableAggregation.MEAN)
685 1.0, name="foo", aggregation=variable_scope.VariableAggregation.MEAN)
733 1.0, name="foo", aggregation=variable_scope.VariableAggregation.MEAN)
754 1.0, name="foo", aggregation=variable_scope.VariableAggregation.MEAN)
790 5.0, name="foo", aggregation=variable_scope.VariableAggregation.MEAN)
811 5.0, name="foo", aggregation=variable_scope.VariableAggregation.MEAN)
858 aggregation=variable_scope.VariableAggregation.SUM)
884 aggregation=variable_scope.VariableAggregation.SUM)
911 aggregation=variable_scope.VariableAggregation.MEAN)
/external/tensorflow/tensorflow/python/ops/
Dvariables.py122 elif isinstance(other, VariableAggregation):
129 class VariableAggregation(enum.Enum): class
145 VariableAggregation.__doc__ = (
154 aggregation = VariableAggregation.NONE
157 (VariableAggregation, VariableAggregationV2)):
195 aggregation=VariableAggregation.NONE,
204 aggregation = VariableAggregation.NONE
233 aggregation=VariableAggregation.NONE,
242 aggregation = VariableAggregation.NONE
378 aggregation=VariableAggregation.NONE,
[all …]
Dvariable_scope.py202 VariableAggregation = variables.VariableAggregation # pylint: disable=invalid-name variable
303 aggregation=VariableAggregation.NONE):
451 aggregation=VariableAggregation.NONE):
585 aggregation=VariableAggregation.NONE):
812 aggregation=VariableAggregation.NONE):
1263 aggregation=VariableAggregation.NONE):
1333 aggregation=VariableAggregation.NONE):
1556 aggregation=VariableAggregation.NONE):
1700 aggregation=VariableAggregation.NONE):
1743 aggregation=VariableAggregation.NONE):
/external/tensorflow/tensorflow/python/training/
Dtraining_util.py131 aggregation=variables.VariableAggregation.ONLY_FIRST_REPLICA,
143 aggregation=variables.VariableAggregation.ONLY_FIRST_REPLICA,
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.-variable-aggregation.pbtxt1 path: "tensorflow.VariableAggregation"
Dtensorflow.keras.optimizers.-optimizer.pbtxt24 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.optimizers.-optimizer.pbtxt24 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-adagrad.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-nadam.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.optimizers.-adagrad.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.optimizers.-adadelta.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
/external/tensorflow/tensorflow/core/framework/
Dvariable.proto31 enum VariableAggregation { enum
73 VariableAggregation aggregation = 9;
/external/tensorflow/tensorflow/python/layers/
Dbase.py326 aggregation=vs.VariableAggregation.NONE,
390 aggregation=vs.VariableAggregation.NONE,

12345678910>>...18