/external/tensorflow/tensorflow/python/tpu/ |
D | tpu_embedding_v2_utils.py | 35 from tensorflow.python.ops import variables as tf_variables unknown 42 tf_variables.Variable) 145 tf_variables.Variable] 146 ) -> Dict[Text, tf_variables.Variable]:
|
D | tpu_embedding_v2.py | 46 from tensorflow.python.ops import variables as tf_variables unknown 414 ) -> Dict[tpu_embedding_v2_utils.TableConfig, tf_variables.Variable]: 787 ) -> Dict[Text, Dict[Text, tf_variables.Variable]]: 808 return tf_variables.Variable( 1369 variables: Dict[Text, Dict[Text, tf_variables.Variable]], 1414 variables: Dict[Text, Dict[Text, tf_variables.Variable]], 1477 table: tf_variables.Variable, 1711 next_creator: Callable[..., tf_variables.Variable], *args, **kwargs):
|
D | tpu_embedding_v2_test.py | 48 from tensorflow.python.ops import variables as tf_variables unknown 1137 step_counter = tf_variables.Variable(0.0, dtypes.float32) 1213 slots[slot] = tf_variables.Variable( 1256 slots[slot] = tf_variables.Variable(
|
/external/tensorflow/tensorflow/python/keras/optimizer_v2/ |
D | optimizer_v2.py | 53 from tensorflow.python.ops import variables as tf_variables unknown 908 weight = tf_variables.Variable( 963 (ops.Tensor, tf_variables.Variable)) or callable(value): 974 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA) 987 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA) 1162 synchronization=tf_variables.VariableSynchronization.AUTO, 1163 aggregation=tf_variables.VariableAggregation.NONE): 1170 if synchronization == tf_variables.VariableSynchronization.ON_READ:
|
D | nadam.py | 29 from tensorflow.python.ops import variables as tf_variables unknown 99 aggregation=tf_variables.VariableAggregation.ONLY_FIRST_REPLICA)
|
/external/tensorflow/tensorflow/python/keras/legacy_tf_layers/ |
D | base.py | 34 from tensorflow.python.ops import variables as tf_variables unknown 433 existing_variables = set(tf_variables.global_variables()) 437 existing_variables = set(tf_variables.global_variables()) 479 trainable_variables = tf_variables.trainable_variables()
|
/external/tensorflow/tensorflow/python/keras/layers/ |
D | normalization.py | 38 from tensorflow.python.ops import variables as tf_variables unknown 451 synchronization=tf_variables.VariableSynchronization.ON_READ, 453 aggregation=tf_variables.VariableAggregation.MEAN, 461 synchronization=tf_variables.VariableSynchronization.ON_READ, 463 aggregation=tf_variables.VariableAggregation.MEAN, 480 synchronization=tf_variables.VariableSynchronization.ON_READ, 482 aggregation=tf_variables.VariableAggregation.MEAN, 501 synchronization=tf_variables.VariableSynchronization.ON_READ, 503 aggregation=tf_variables.VariableAggregation.MEAN,
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | base_layer_utils.py | 36 from tensorflow.python.ops import variables as tf_variables unknown 64 synchronization=tf_variables.VariableSynchronization.AUTO, 65 aggregation=tf_variables.VariableAggregation.NONE, 130 return tf_variables.VariableV1(
|
D | base_layer_v1.py | 64 from tensorflow.python.ops import variables as tf_variables unknown 329 synchronization=tf_variables.VariableSynchronization.AUTO, 330 aggregation=tf_variables.VariableAggregation.NONE, 396 if synchronization == tf_variables.VariableSynchronization.ON_READ: 2181 if isinstance(existing_value, tf_variables.Variable): 2242 if not isinstance(val, tf_variables.Variable):
|
D | base_layer.py | 76 from tensorflow.python.ops import variables as tf_variables unknown 533 synchronization=tf_variables.VariableSynchronization.AUTO, 534 aggregation=tf_variables.VariableAggregation.NONE, 595 if synchronization == tf_variables.VariableSynchronization.ON_READ: 2827 if isinstance(existing_value, tf_variables.Variable): 2886 if not isinstance(val, tf_variables.Variable):
|
/external/tensorflow/tensorflow/python/keras/layers/legacy_rnn/ |
D | rnn_cell_impl.py | 52 from tensorflow.python.ops import variables as tf_variables unknown 255 variable in tf_variables.trainable_variables() or 257 list(variable)[0] in tf_variables.trainable_variables()))
|
/external/tensorflow/tensorflow/python/keras/ |
D | metrics.py | 73 from tensorflow.python.ops import variables as tf_variables unknown 291 aggregation=tf_variables.VariableAggregation.SUM, 292 synchronization=tf_variables.VariableSynchronization.ON_READ, 303 synchronization = tf_variables.VariableSynchronization.ON_WRITE
|