Searched refs:with_dependencies (Results 1 – 25 of 67) sorted by relevance
123
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | sampling_ops.py | 116 control_flow_ops.with_dependencies([ 226 init_probs = control_flow_ops.with_dependencies([assert_op], init_probs) 327 checked_probs = control_flow_ops.with_dependencies([ 357 labels = control_flow_ops.with_dependencies([lbl_assert], labels) 359 control_flow_ops.with_dependencies([ 366 labels = control_flow_ops.with_dependencies([
|
D | training.py | 427 total_loss = control_flow_ops.with_dependencies([barrier], total_loss) 466 train_op = control_flow_ops.with_dependencies([grad_updates], total_loss)
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/ |
D | weibull.py | 86 self._scale = control_flow_ops.with_dependencies([ 91 self._concentration = control_flow_ops.with_dependencies([ 141 return control_flow_ops.with_dependencies([is_valid], x) 151 return control_flow_ops.with_dependencies([is_positive, less_than_one], y)
|
D | absolute_value.py | 106 y = control_flow_ops.with_dependencies( 117 zeros = control_flow_ops.with_dependencies(
|
D | gumbel.py | 83 self._scale = control_flow_ops.with_dependencies([ 128 return control_flow_ops.with_dependencies([is_positive, less_than_one], y)
|
D | ordered.py | 94 output_shape = control_flow_ops.with_dependencies( 134 return control_flow_ops.with_dependencies([is_valid], x)
|
D | power_transform.py | 121 return control_flow_ops.with_dependencies([is_valid], x) 128 return control_flow_ops.with_dependencies([is_valid], y)
|
D | kumaraswamy.py | 125 return control_flow_ops.with_dependencies([ 134 return control_flow_ops.with_dependencies([
|
D | cholesky_outer_product.py | 101 x = control_flow_ops.with_dependencies([is_matrix, is_square], x) 167 x = control_flow_ops.with_dependencies(
|
D | square.py | 92 return control_flow_ops.with_dependencies([is_valid], t)
|
/external/tensorflow/tensorflow/python/ops/ |
D | confusion_matrix.py | 160 labels = control_flow_ops.with_dependencies( 164 predictions = control_flow_ops.with_dependencies( 174 labels = control_flow_ops.with_dependencies( 178 predictions = control_flow_ops.with_dependencies(
|
/external/tensorflow/tensorflow/python/ops/linalg/ |
D | linear_operator_identity.py | 49 self._num_rows = control_flow_ops.with_dependencies([ 353 x = control_flow_ops.with_dependencies([aps], x) 402 self._num_rows = control_flow_ops.with_dependencies([ 437 self._batch_shape_arg = control_flow_ops.with_dependencies([ 663 x = control_flow_ops.with_dependencies([aps], x) 681 rhs = control_flow_ops.with_dependencies([aps], rhs)
|
D | linear_operator_zeros.py | 296 x = control_flow_ops.with_dependencies([aps], x) 350 self._num_rows = control_flow_ops.with_dependencies([ 359 self._num_columns = control_flow_ops.with_dependencies([ 405 self._batch_shape_arg = control_flow_ops.with_dependencies([
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | numerics_test.py | 76 a = control_flow_ops.with_dependencies([check], a) 86 a = control_flow_ops.with_dependencies([check], a) 96 a = control_flow_ops.with_dependencies([check], a)
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/ |
D | distribution_util.py | 138 return control_flow_ops.with_dependencies([ 143 return control_flow_ops.with_dependencies([ 228 return control_flow_ops.with_dependencies([ 232 return control_flow_ops.with_dependencies([
|
D | inverse_gamma.py | 241 return control_flow_ops.with_dependencies([ 262 return control_flow_ops.with_dependencies([ 280 return control_flow_ops.with_dependencies([
|
D | binomial.py | 283 return control_flow_ops.with_dependencies([ 297 return control_flow_ops.with_dependencies([
|
D | deterministic.py | 107 loc = control_flow_ops.with_dependencies( 134 tol = control_flow_ops.with_dependencies([
|
D | mvn_full_covariance.py | 179 covariance_matrix = control_flow_ops.with_dependencies([
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | dirichlet.py | 299 return control_flow_ops.with_dependencies([ 310 return control_flow_ops.with_dependencies([ 326 return control_flow_ops.with_dependencies([
|
D | beta.py | 316 return control_flow_ops.with_dependencies([ 331 return control_flow_ops.with_dependencies([ 341 return control_flow_ops.with_dependencies([
|
D | dirichlet_multinomial.py | 340 return control_flow_ops.with_dependencies([ 351 return control_flow_ops.with_dependencies([
|
D | gamma.py | 272 return control_flow_ops.with_dependencies([ 283 return control_flow_ops.with_dependencies([
|
/external/tensorflow/tensorflow/contrib/factorization/python/ops/ |
D | gmm.py | 34 from tensorflow.python.ops.control_flow_ops import with_dependencies 168 training_op = with_dependencies([training_op, incr_step], loss)
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
D | kmeans.py | 38 from tensorflow.python.ops.control_flow_ops import with_dependencies 134 training_op = with_dependencies([training_op, incr_step], loss)
|
123