Home
last modified time | relevance | path

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

12345678910>>...17

/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.-adamax.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-r-m-sprop.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-adadelta.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-ftrl.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
/external/tensorflow/tensorflow/python/distribute/
Ddistribute_lib_test.py87 variable_scope.VariableAggregation.NONE)
107 variable_scope.VariableAggregation.NONE)
118 variable_scope.VariableAggregation.MEAN)
125 aggregation=variable_scope.VariableAggregation.MEAN))
Dreduce_util.py45 variable_scope.VariableAggregation.SUM: ReduceOp.SUM,
46 variable_scope.VariableAggregation.MEAN: ReduceOp.MEAN,
Dparameter_server_strategy.py304 aggregation = kwargs.pop("aggregation", vs.VariableAggregation.NONE)
306 vs.VariableAggregation.NONE,
307 vs.VariableAggregation.SUM,
308 vs.VariableAggregation.MEAN,
309 vs.VariableAggregation.ONLY_FIRST_REPLICA
Dtpu_strategy.py85 aggregation = kwargs.pop("aggregation", vs.VariableAggregation.NONE)
87 vs.VariableAggregation.NONE,
88 vs.VariableAggregation.SUM,
89 vs.VariableAggregation.MEAN,
90 vs.VariableAggregation.ONLY_FIRST_REPLICA,
Dmirrored_strategy.py230 variable_scope.VariableAggregation.NONE)
232 variable_scope.VariableAggregation.NONE,
233 variable_scope.VariableAggregation.SUM,
234 variable_scope.VariableAggregation.MEAN,
235 variable_scope.VariableAggregation.ONLY_FIRST_REPLICA
/external/tensorflow/tensorflow/contrib/distribute/python/
Dvalues_test.py187 variable_scope.VariableAggregation.SUM)
310 variable_scope.VariableAggregation.SUM)
371 variable_scope.VariableAggregation.MEAN)
510 variable_scope.VariableAggregation.MEAN)
567 variable_scope.VariableAggregation.SUM)
572 self.assertEqual(variable_scope.VariableAggregation.SUM,
581 None, device_map, (v,), variable_scope.VariableAggregation.MEAN)
586 self.assertEqual(variable_scope.VariableAggregation.MEAN,
592 variable_scope.VariableAggregation.SUM)
628 variable_scope.VariableAggregation.SUM, distribution)
[all …]
Dmirrored_strategy_multigpu_test.py447 aggregation=variable_scope.VariableAggregation.SUM)
452 aggregation=variable_scope.VariableAggregation.MEAN)
469 self.assertEqual(variable_scope.VariableAggregation.SUM, v2.aggregation)
472 self.assertEqual(variable_scope.VariableAggregation.MEAN, v3.aggregation)
484 aggregation=variable_scope.VariableAggregation.SUM)
488 aggregation=variable_scope.VariableAggregation.MEAN)
506 self.assertEqual(variable_scope.VariableAggregation.SUM,
510 self.assertEqual(variable_scope.VariableAggregation.MEAN,
515 aggregation = variable_scope.VariableAggregation.ONLY_FIRST_REPLICA
667 aggregation=variable_scope.VariableAggregation.SUM)
[all …]
Dparameter_server_strategy_test.py182 aggregation=variable_scope.VariableAggregation.SUM)
196 aggregation=variable_scope.VariableAggregation.SUM)
206 aggregation=variable_scope.VariableAggregation.SUM)
265 aggregation=variable_scope.VariableAggregation.SUM,
278 aggregation=variable_scope.VariableAggregation.SUM,
338 aggregation=variable_scope.VariableAggregation.SUM)
350 aggregation=variable_scope.VariableAggregation.SUM)
361 aggregation=variable_scope.VariableAggregation.SUM)
423 aggregation=variable_scope.VariableAggregation.SUM)
426 aggregation=variable_scope.VariableAggregation.SUM)
[all …]
/external/tensorflow/tensorflow/python/training/
Dtraining_util.py132 aggregation=variables.VariableAggregation.ONLY_FIRST_REPLICA,
143 aggregation=variables.VariableAggregation.ONLY_FIRST_REPLICA,
/external/tensorflow/tensorflow/python/ops/
Dvariable_scope.py199 VariableAggregation = variables.VariableAggregation # pylint: disable=invalid-name variable
299 aggregation=VariableAggregation.NONE):
450 aggregation=VariableAggregation.NONE):
584 aggregation=VariableAggregation.NONE):
815 aggregation=VariableAggregation.NONE):
1190 aggregation=VariableAggregation.NONE):
1260 aggregation=VariableAggregation.NONE):
1485 aggregation=VariableAggregation.NONE):
1631 aggregation=VariableAggregation.NONE):
1676 aggregation=VariableAggregation.NONE):
Dvariables.py112 elif isinstance(other, VariableAggregation):
119 class VariableAggregation(enum.Enum): class
130 VariableAggregation.__doc__ = (
152 aggregation=VariableAggregation.NONE):
160 aggregation = VariableAggregation.NONE
188 aggregation=VariableAggregation.NONE):
196 aggregation = VariableAggregation.NONE
348 aggregation=VariableAggregation.NONE):
1285 aggregation=VariableAggregation.NONE):
/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.optimizers.-r-m-sprop.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.optimizers.-ftrl.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
Dtensorflow.keras.optimizers.-nadam.pbtxt25 …=[\'None\', \'zeros\', \'None\', \'VariableSynchronization.AUTO\', \'VariableAggregation.NONE\'], "
/external/tensorflow/tensorflow/python/layers/
Dbase.py309 aggregation=vs.VariableAggregation.NONE,
373 aggregation=vs.VariableAggregation.NONE,
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Doptimizer_v2.py577 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA)
589 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA)
711 aggregation=tf_variables.VariableAggregation.NONE):

12345678910>>...17