Home
last modified time | relevance | path

Searched refs:tf_variables (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Doptimizer_v2.py45 from tensorflow.python.ops import variables as tf_variables unknown
543 weight = tf_variables.Variable(
577 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA)
589 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA)
664 if isinstance(value, (ops.Tensor, tf_variables.Variable,
710 synchronization=tf_variables.VariableSynchronization.AUTO,
711 aggregation=tf_variables.VariableAggregation.NONE):
718 if synchronization == tf_variables.VariableSynchronization.ON_READ:
/external/tensorflow/tensorflow/python/layers/
Dbase.py28 from tensorflow.python.ops import variables as tf_variables unknown
391 if isinstance(variable, tf_variables.PartitionedVariable):
410 existing_variables = set(tf_variables.global_variables())
414 existing_variables = set(tf_variables.global_variables())
456 trainable_variables = tf_variables.trainable_variables()
/external/tensorflow/tensorflow/contrib/training/python/training/
Dtraining.py251 from tensorflow.python.ops import variables as tf_variables unknown
431 variables_to_train = tf_variables.trainable_variables()
435 assert v.trainable or v in tf_variables.trainable_variables()
/external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/
Dtrainer_hooks_test.py31 from tensorflow.python.ops import variables as tf_variables unknown
64 sess.run(tf_variables.global_variables_initializer())
/external/tensorflow/tensorflow/python/keras/engine/
Dbase_layer_utils.py34 from tensorflow.python.ops import variables as tf_variables unknown
73 synchronization=tf_variables.VariableSynchronization.AUTO,
74 aggregation=tf_variables.VariableAggregation.NONE,
141 v = tf_variables.VariableV1(
Dbase_layer.py52 from tensorflow.python.ops import variables as tf_variables unknown
270 synchronization=tf_variables.VariableSynchronization.AUTO,
271 aggregation=tf_variables.VariableAggregation.NONE,
335 if synchronization == tf_variables.VariableSynchronization.ON_READ:
1448 if isinstance(variable, tf_variables.PartitionedVariable):
1763 if isinstance(existing_value, tf_variables.Variable):
1814 if (isinstance(val, tf_variables.Variable) and
/external/tensorflow/tensorflow/python/keras/layers/
Dnormalization.py38 from tensorflow.python.ops import variables as tf_variables unknown
373 synchronization=tf_variables.VariableSynchronization.ON_READ,
375 aggregation=tf_variables.VariableAggregation.MEAN,
383 synchronization=tf_variables.VariableSynchronization.ON_READ,
385 aggregation=tf_variables.VariableAggregation.MEAN,
403 synchronization=tf_variables.VariableSynchronization.ON_READ,
405 aggregation=tf_variables.VariableAggregation.MEAN,
/external/tensorflow/tensorflow/contrib/model_pruning/python/layers/
Dlayers.py35 from tensorflow.python.ops import variables as tf_variables unknown
87 if isinstance(variable, tf_variables.PartitionedVariable):
/external/tensorflow/tensorflow/python/ops/
Drnn_cell_impl.py52 from tensorflow.python.ops import variables as tf_variables unknown
254 variable in tf_variables.trainable_variables() or
255 (isinstance(variable, tf_variables.PartitionedVariable) and
256 list(variable)[0] in tf_variables.trainable_variables()))
/external/tensorflow/tensorflow/contrib/tensor_forest/python/
Dtensor_forest.py40 from tensorflow.python.ops import variables as tf_variables unknown
291 for v in tf_variables.local_variables():
/external/tensorflow/tensorflow/python/keras/
Dmetrics.py59 from tensorflow.python.ops import variables as tf_variables unknown
239 aggregation=tf_variables.VariableAggregation.SUM,
240 synchronization=tf_variables.VariableSynchronization.ON_READ,
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dlayers.py53 from tensorflow.python.ops import variables as tf_variables unknown
1719 synchronization=tf_variables.VariableSynchronization.AUTO,
1720 aggregation=tf_variables.VariableAggregation.NONE,
1760 if isinstance(variable, tf_variables.PartitionedVariable):
/external/tensorflow/tensorflow/python/grappler/
Dhierarchical_controller.py1027 tf_variables, argument
1074 grads_and_vars = opt.compute_gradients(loss, tf_variables)