HomeSort by relevance Sort by last modified time
    Searched refs:tensor_util (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /external/tensorflow/tensorflow/python/ops/parallel_for/
control_flow_ops.py 28 from tensorflow.python.framework import tensor_util
204 iters_value = tensor_util.constant_value(iters)
251 iters_value = tensor_util.constant_value(iters)
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
distribution_util.py 25 from tensorflow.python.framework import tensor_util
311 event_size_const = tensor_util.constant_value(event_size)
329 batch_shape_const = tensor_util.constant_value(batch_shape)
494 return tensor_util.constant_value(ops.convert_to_tensor(x))
sample_stats.py 25 from tensorflow.python.framework import tensor_util
180 max_lags_ = tensor_util.constant_value(max_lags)
324 axis_const = tensor_util.constant_value(axis)
404 shape_const = tensor_util.constant_value(array_ops.shape(x))
batch_reshape.py 26 from tensorflow.python.framework import tensor_util
375 batch_shape_static = tensor_util.constant_value_as_shape(new_shape)
420 batch_shape_static = tensor_util.constant_value_as_shape(batch_shape)
wishart.py 25 from tensorflow.contrib.framework.python.framework import tensor_util as contrib_tensor_util
30 from tensorflow.python.framework import tensor_util
147 df_val = tensor_util.constant_value(self._df)
148 dim_val = tensor_util.constant_value(self._dimension)
deterministic.py 29 from tensorflow.python.framework import tensor_util
168 n_static = tensor_util.constant_value(ops.convert_to_tensor(n))
mixture.py 26 from tensorflow.python.framework import tensor_util
161 static_num_components = tensor_util.constant_value(num_components)
343 static_n = tensor_util.constant_value(n)
  /external/tensorflow/tensorflow/python/ops/linalg/
linear_operator_zeros.py 27 from tensorflow.python.framework import tensor_util
201 self._num_rows_static = tensor_util.constant_value(self._num_rows)
208 self._num_columns_static = tensor_util.constant_value(self._num_columns)
226 self._batch_shape_static = tensor_util.constant_value(
linear_operator_identity.py 26 from tensorflow.python.framework import tensor_util
278 self._num_rows_static = tensor_util.constant_value(self._num_rows)
286 self._batch_shape_static = tensor_util.constant_value(
620 self._num_rows_static = tensor_util.constant_value(self._num_rows)
  /external/tensorflow/tensorflow/python/keras/engine/
training_utils.py 38 from tensorflow.python.framework import tensor_util
173 if any(tensor_util.is_tensor(x) for x in arrays):
229 if tensor_util.is_tensor(x):
326 if tensor_util.is_tensor(data[i]):
426 if y is not None and not tensor_util.is_tensor(y)
478 if y is None or loss is None or tensor_util.is_tensor(y):
680 if (not tensor_util.is_tensor(sample_weight) and
732 return any(tensor_util.is_tensor(v) for v in ls)
734 return any(tensor_util.is_tensor(v) for _, v in six.iteritems(ls))
735 return tensor_util.is_tensor(ls
    [all...]
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
utils.py 25 from tensorflow.python.framework import tensor_util
167 value = tensor_util.constant_value(value_or_tensor_or_var)
  /external/tensorflow/tensorflow/contrib/metrics/python/ops/
histogram_ops.py 26 from tensorflow.contrib.framework.python.framework import tensor_util
82 scores, boolean_labels = tensor_util.remove_squeezable_dimensions(
  /external/tensorflow/tensorflow/python/framework/
convert_to_constants.py 28 from tensorflow.python.framework import tensor_util
191 tensor_util.make_tensor_proto(
constant_op.py 36 from tensorflow.python.framework import tensor_util
281 tensor_util.make_tensor_proto(
  /external/tensorflow/tensorflow/python/distribute/
input_lib.py 34 from tensorflow.python.framework import tensor_util
526 if tensor_util.is_tensor(batch_size):
527 batch_size = tensor_util.constant_value(batch_size)
529 if tensor_util.is_tensor(drop_remainder):
530 drop_remainder = tensor_util.constant_value(drop_remainder)
  /external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
beam_search_decoder.py 31 from tensorflow.python.framework import tensor_util
384 s = tensor_shape.as_shape(tensor_util.constant_value(s))
388 static_batch_size = tensor_util.constant_value(self._batch_size)
419 s = tensor_shape.TensorShape(tensor_util.constant_value(s))
427 static_batch_size = tensor_util.constant_value(self._batch_size)
528 element_shape, tensor_util.constant_value(self._batch_size),
    [all...]
  /external/tensorflow/tensorflow/python/saved_model/
load.py 26 from tensorflow.python.framework import tensor_util
120 elif tensor_util.is_tensor(obj):
268 tensor_util.MakeNdarray(tensor_proto))
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
affine.py 25 from tensorflow.python.framework import tensor_util
257 [self._scale] if tensor_util.is_tensor(self._scale)
  /external/tensorflow/tensorflow/contrib/gan/python/features/python/
virtual_batchnorm_impl.py 29 from tensorflow.python.framework import tensor_util
44 static_batch_size = tensor_util.constant_value(batch_size)
  /external/tensorflow/tensorflow/contrib/linear_optimizer/python/
sdca_estimator.py 29 from tensorflow.python.framework import tensor_util
60 shape = tensor_util.constant_value(column.dense_shape)
  /external/tensorflow/tensorflow/contrib/training/python/training/
bucket_ops.py 33 from tensorflow.python.framework import tensor_util
187 static_batch_size = tensor_util.constant_value(bucket_batch_size)
  /external/tensorflow/tensorflow/python/ops/distributions/
util.py 29 from tensorflow.python.framework import tensor_util
146 x_ = tensor_util.constant_value(x)
612 shift_value_static = tensor_util.constant_value(shift)
683 cond_value_static = tensor_util.constant_value(cond)
719 s_ = tensor_util.constant_value(make_shape_tensor(s))
775 static_x = tensor_util.constant_value(x)
    [all...]
distribution.py 32 from tensorflow.python.framework import tensor_util
465 if t is None or not tensor_util.is_tensor(t):
549 static_shape = tensor_util.constant_value(shape)
    [all...]
  /external/tensorflow/tensorflow/python/ops/
array_grad.py 27 from tensorflow.python.framework import tensor_util
128 value = tensor_util.constant_value(concat_dim)
156 concat_dim_static = tensor_util.constant_value(concat_dim)
161 rank = tensor_util.constant_value(array_ops.rank(input_values[0]))
431 axis_static = tensor_util.constant_value(axis)
    [all...]
  /external/tensorflow/tensorflow/python/data/util/
structure.py 29 from tensorflow.python.framework import tensor_util
530 tensor_util.constant_value_as_shape(value.dense_shape)).ndims == 0:
554 tensor_util.constant_value_as_shape(sparse_tensor.dense_shape))

Completed in 1517 milliseconds

1 23 4 5 6