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

1 2

  /external/tensorflow/tensorflow/contrib/gan/python/eval/python/
eval_utils_test.py 38 images.shape.assert_is_compatible_with([1, 13 * 32, 2 * 32, 3])
44 images.shape.assert_is_compatible_with([1, 13 * 32, 2 * 32, 3])
classifier_metrics_test.py 174 logits.shape.assert_is_compatible_with([batch_size, 1001])
189 pool.shape.assert_is_compatible_with([batch_size, 2048])
208 logits.shape.assert_is_compatible_with([batch_size, 1001])
209 pool.shape.assert_is_compatible_with([batch_size, 2048])
summaries_impl.py 125 gan_model.generated_data.shape.assert_is_compatible_with(
127 gan_model.real_data.shape.assert_is_compatible_with(
sliced_wasserstein_impl.py 235 real_images.shape.assert_is_compatible_with([None, None, height, 3])
236 fake_images.shape.assert_is_compatible_with(real_images.shape)
  /external/tensorflow/tensorflow/contrib/losses/python/losses/
loss_ops.py 291 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
336 logits.get_shape().assert_is_compatible_with(multi_class_labels.get_shape())
385 logits.get_shape().assert_is_compatible_with(onehot_labels.get_shape())
467 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
498 logits.get_shape().assert_is_compatible_with(labels.get_shape())
535 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
589 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
662 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
  /external/tensorflow/tensorflow/python/ops/losses/
losses_impl.py 259 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
311 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
351 logits.get_shape().assert_is_compatible_with(labels.get_shape())
415 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
472 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
538 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
612 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
664 logits.get_shape().assert_is_compatible_with(multi_class_labels.get_shape())
720 logits.get_shape().assert_is_compatible_with(onehot_labels.get_shape())
    [all...]
  /external/tensorflow/tensorflow/contrib/nn/python/ops/
alpha_dropout.py 64 keep_prob.get_shape().assert_is_compatible_with(tensor_shape.scalar())
  /external/tensorflow/tensorflow/python/framework/
tensor_shape_test.py 210 s.assert_is_compatible_with([3, 4, 7])
254 tensor_shape.TensorShape([1, 2, 3]).assert_is_compatible_with(known[1:4])
259 [None, None, None]).assert_is_compatible_with(unknown[1:4])
262 tensor_shape.TensorShape([1, 2, 3, 4]).assert_is_compatible_with(
265 tensor_shape.TensorShape([1, 2, 3, 4]).assert_is_compatible_with(
268 tensor_shape.TensorShape([1, 2, 3, 4]).assert_is_compatible_with(
271 tensor_shape.TensorShape([1, 2, 3, 4]).assert_is_compatible_with(
274 tensor_shape.TensorShape([1, 2, 3]).assert_is_compatible_with(
299 tensor_shape.TensorShape([]).assert_is_compatible_with(
301 tensor_shape.TensorShape([37]).assert_is_compatible_with(
    [all...]
common_shapes.py 102 inner_a.assert_is_compatible_with(inner_b)
199 input_shape[3].assert_is_compatible_with(filter_shape[2])
258 input_shape[3].assert_is_compatible_with(filter_shape[2])
tensor_shape.py 101 def assert_is_compatible_with(self, other): member in class:Dimension
140 self.assert_is_compatible_with(other)
743 def assert_is_compatible_with(self, other): member in class:TensorShape
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
softmax_centered.py 148 y.shape.assert_is_compatible_with(shape)
200 x.shape.assert_is_compatible_with(shape)
  /external/tensorflow/tensorflow/python/ops/
embedding_ops.py 423 sp_ids.values.get_shape().assert_is_compatible_with(
425 sp_ids.indices.get_shape().assert_is_compatible_with(
427 sp_ids.dense_shape.get_shape().assert_is_compatible_with(
confusion_matrix.py 185 predictions.get_shape().assert_is_compatible_with(weights.get_shape())
metrics_impl.py 80 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
403 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
515 thresh_tiled.get_shape().assert_is_compatible_with(
    [all...]
  /external/tensorflow/tensorflow/contrib/kernel_methods/python/
losses.py 112 weights.get_shape().assert_is_compatible_with(labels.get_shape())
  /external/tensorflow/tensorflow/python/ops/linalg/
linear_operator.py 620 self.shape[self_dim].assert_is_compatible_with(x.get_shape()[arg_dim])
660 self.shape[self_dim].assert_is_compatible_with(x.get_shape()[-1])
788 self.shape[self_dim].assert_is_compatible_with(rhs.get_shape()[arg_dim])
841 self.shape[self_dim].assert_is_compatible_with(rhs.get_shape()[-1])
    [all...]
linear_operator_low_rank_update.py 292 self.base_operator.domain_dimension.assert_is_compatible_with(
296 uv_shape[-1].assert_is_compatible_with(self._diag_update.get_shape()[-1])
linear_operator_composition.py 196 domain_dimension.assert_is_compatible_with(operator.range_dimension)
  /external/tensorflow/tensorflow/contrib/training/python/training/
sampling_ops.py 306 tensor_shape[0].assert_is_compatible_with(tensor_list[0].get_shape()[0])
346 tensor_shape[0].assert_is_compatible_with(labels.get_shape()[0])
  /external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/ops/
seq2seq.py 286 proj_weights.get_shape().assert_is_compatible_with([None, num_symbols])
288 proj_biases.get_shape().assert_is_compatible_with([num_symbols])
471 proj_weights.get_shape().assert_is_compatible_with([None, num_symbols])
473 proj_biases.get_shape().assert_is_compatible_with([num_symbols])
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/losses/python/
losses_impl.py 151 discriminator_real_outputs.shape.assert_is_compatible_with(
702 discriminator_real_outputs.shape.assert_is_compatible_with(
830 loss.shape.assert_is_compatible_with([]
    [all...]
  /external/tensorflow/tensorflow/contrib/metrics/python/ops/
metric_ops.py 747 predictions.get_shape().assert_is_compatible_with(labels.get_shape())
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/features/python/
virtual_batchnorm_impl.py 106 base_shape.assert_is_compatible_with(_get_shape(tensor))
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
embedding_ops.py 631 sp_ids.values.get_shape().assert_is_compatible_with(
633 sp_ids.indices.get_shape().assert_is_compatible_with(
635 sp_ids.dense_shape.get_shape().assert_is_compatible_with(
    [all...]
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
ar_model.py 181 times.get_shape().assert_is_compatible_with([None, self.window_size])
184 values.get_shape().assert_is_compatible_with(
403 targets.get_shape().assert_is_compatible_with(prediction.get_shape())

Completed in 3448 milliseconds

1 2