HomeSort by relevance Sort by last modified time
    Searched refs:check_ops (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/tensorflow/tensorflow/python/kernel_tests/
check_ops_test.py 15 """Tests for tensorflow.ops.check_ops."""
31 from tensorflow.python.ops import check_ops
41 check_ops.assert_proper_iterable(tensor)
48 check_ops.assert_proper_iterable(ten)
54 check_ops.assert_proper_iterable(array)
60 check_ops.assert_proper_iterable(mystr)
66 check_ops.assert_proper_iterable(non_iterable)
73 check_ops.assert_proper_iterable(list_of_stuff)
79 check_ops.assert_proper_iterable(generator_of_stuff)
87 with ops.control_dependencies([check_ops.assert_equal(small, small)])
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
weibull.py 23 from tensorflow.python.ops import check_ops
78 check_ops.assert_same_float_dtype([self._scale, self._concentration])
81 check_ops.assert_positive(
86 check_ops.assert_positive(
136 is_valid = check_ops.assert_non_negative(
144 is_positive = check_ops.assert_non_negative(
146 less_than_one = check_ops.assert_less_equal(
absolute_value.py 24 from tensorflow.python.ops import check_ops
100 [check_ops.assert_equal(
116 [check_ops.assert_non_negative(y, message="Argument y was negative")],
128 [check_ops.assert_non_negative(y, message="Argument y was negative")],
gumbel.py 23 from tensorflow.python.ops import check_ops
75 check_ops.assert_same_float_dtype([self._loc, self._scale])
78 check_ops.assert_positive(
118 is_positive = check_ops.assert_non_negative(
120 less_than_one = check_ops.assert_less_equal(
cholesky_outer_product.py 26 from tensorflow.python.ops import check_ops
108 is_matrix = check_ops.assert_rank_at_least(x, 2)
110 is_square = check_ops.assert_equal(shape[-2], shape[-1])
166 is_positive = check_ops.assert_positive(
179 is_matrix = check_ops.assert_rank_at_least(
182 is_square = check_ops.assert_equal(
186 is_positive_definite = check_ops.assert_positive(
power_transform.py 23 from tensorflow.python.ops import check_ops
116 is_valid = check_ops.assert_non_negative(
125 is_valid = check_ops.assert_positive(
sinh_arcsinh.py 25 from tensorflow.python.ops import check_ops
120 check_ops.assert_same_float_dtype([self._skewness, self._tailweight])
123 check_ops.assert_positive(
permute.py 27 from tensorflow.python.ops import check_ops
110 check_ops.assert_equal(
reshape.py 28 from tensorflow.python.ops import check_ops
149 assertions.append(check_ops.assert_less_equal(
166 check_ops.assert_less_equal(
172 check_ops.assert_greater_equal(
229 assertions.append(check_ops.assert_equal(
softplus.py 22 from tensorflow.python.ops import check_ops
95 nonzero_check = check_ops.assert_none_equal(
  /external/tensorflow/tensorflow/contrib/training/python/training/
sampling_ops.py 23 from tensorflow.python.ops import check_ops
116 check_ops.assert_less_equal(0.0, cur_prob),
117 check_ops.assert_less_equal(cur_prob, 1.0)
326 check_ops.assert_non_negative(probs),
327 check_ops.assert_less(prob_sum, 1.0 + tol),
328 check_ops.assert_less(1.0 - tol, prob_sum)
351 lbl_assert = check_ops.assert_positive(labels_batch_size)
358 check_ops.assert_equal(array_ops.shape(x)[0], labels_batch_size)
364 check_ops.assert_integer(labels), check_ops.assert_non_negative(labels)
    [all...]
  /external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
sgld_optimizer.py 21 from tensorflow.python.ops import check_ops
114 check_ops.assert_non_negative(
117 check_ops.assert_less_equal(
124 check_ops.assert_greater(
131 check_ops.assert_non_negative(
133 check_ops.assert_integer(
138 check_ops.assert_non_negative(
156 check_ops.assert_non_negative(
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
mvn_full_covariance.py 24 from tensorflow.python.ops import check_ops
171 check_ops.assert_near(
inverse_gamma.py 28 from tensorflow.python.ops import check_ops
131 check_ops.assert_positive(concentration),
132 check_ops.assert_positive(rate),
137 check_ops.assert_same_float_dtype(
237 check_ops.assert_less(
258 check_ops.assert_less(
271 check_ops.assert_same_float_dtype(
276 check_ops.assert_positive(x),
relaxed_bernoulli.py 28 from tensorflow.python.ops import check_ops
170 with ops.control_dependencies([check_ops.assert_positive(temperature)]
deterministic.py 31 from tensorflow.python.ops import check_ops
99 [check_ops.assert_rank_at_least(loc, 1, message=msg)], loc)
126 check_ops.assert_non_negative(
374 is_vector_check = check_ops.assert_rank_at_least(x, 1)
375 right_vec_space_check = check_ops.assert_equal(
distribution_util.py 26 from tensorflow.python.ops import check_ops
131 check_ops.assert_positive(
136 check_ops.assert_none_equal(
221 check_ops.assert_positive(
225 check_ops.assert_none_equal(
437 assertions.append(check_ops.assert_equal(
  /external/tensorflow/tensorflow/python/ops/distributions/
dirichlet.py 25 from tensorflow.python.ops import check_ops
265 check_ops.assert_less(
276 check_ops.assert_positive(
279 check_ops.assert_rank_at_least(
282 check_ops.assert_less(
292 check_ops.assert_positive(
beta.py 28 from tensorflow.python.ops import check_ops
161 check_ops.assert_same_float_dtype([
282 check_ops.assert_less(
286 check_ops.assert_less(
297 check_ops.assert_positive(
307 check_ops.assert_positive(x, message="sample must be positive"),
308 check_ops.assert_less(
gamma.py 28 from tensorflow.python.ops import check_ops
132 check_ops.assert_positive(concentration),
133 check_ops.assert_positive(rate),
138 check_ops.assert_same_float_dtype(
246 check_ops.assert_less(
253 check_ops.assert_same_float_dtype(tensors=[x], dtype=self.dtype)
257 check_ops.assert_positive(x),
util.py 31 from tensorflow.python.ops import check_ops
66 return check_ops.assert_equal(
108 return check_ops.assert_equal(
116 [check_ops.assert_equal(matrix, matrix_t)], matrix)
125 check_ops.assert_non_negative(
216 dependencies = [check_ops.assert_non_negative(probs)]
222 dependencies += [check_ops.assert_less_equal(
374 check_ops.assert_rank_at_least(
377 check_ops.assert_greater_equal(
381 check_ops.assert_less_equal
    [all...]
  /external/tensorflow/tensorflow/python/ops/
confusion_matrix.py 30 from tensorflow.python.ops import check_ops
161 [check_ops.assert_non_negative(
165 [check_ops.assert_non_negative(
175 [check_ops.assert_less(
179 [check_ops.assert_less(
  /external/tensorflow/tensorflow/python/ops/linalg/
linear_operator_util.py 24 from tensorflow.python.ops import check_ops
46 return check_ops.assert_less(zero, should_be_nonzero, message=message)
68 return check_ops.assert_equal(zero, math_ops.imag(x), message=message)
87 assert_same_dd = check_ops.assert_equal(
154 check_ops.assert_proper_iterable(batch_matrices)
linear_operator_identity.py 28 from tensorflow.python.ops import check_ops
50 check_ops.assert_rank(
54 check_ops.assert_non_negative(
404 check_ops.assert_rank(
408 check_ops.assert_non_negative(
439 check_ops.assert_rank(
443 check_ops.assert_non_negative(
635 return check_ops.assert_positive(
639 return check_ops.assert_positive(
645 return check_ops.assert_equal
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
dynamic_rnn_estimator.py 31 from tensorflow.python.ops import check_ops
96 rank_check = check_ops.assert_rank(
98 shape_check = check_ops.assert_equal(
137 seq_rank_check = check_ops.assert_rank(
142 seq_type_check = check_ops.assert_type(
147 ctx_rank_check = check_ops.assert_rank(
152 ctx_type_check = check_ops.assert_type(

Completed in 3248 milliseconds

1 2 3 4