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

1 2

  /external/tensorflow/tensorflow/python/framework/
tensor_spec.py 38 __slots__ = ["_shape", "_shape_tuple", "_dtype", "_name"]
52 self._shape = tensor_shape.TensorShape(shape)
76 return self._shape
101 self._shape.is_compatible_with(spec_or_tensor.shape))
119 return TensorSpec, (self._shape, self._dtype, self._name)
217 return BoundedTensorSpec, (self._shape, self._dtype, self._minimum,
  /external/tensorflow/tensorflow/python/data/util/
structure.py 432 self._shape = tensor_shape.as_shape(shape)
436 return [self._shape]
445 self._shape.is_compatible_with(other._shape))
450 "and shape %s." % (value, self._dtype, self._shape))
454 if self._shape.merge_with(value.shape).ndims == 0:
463 "%s." % (flat_value[0], self._dtype, self._shape))
473 flat_value[0].set_shape(self._shape)
484 return self._shape
492 tensor_shape.TensorShape([batch_size]).concatenate(self._shape))
    [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/data/
tfexample_decoder.py 183 self._shape = shape
192 shape = self._shape
311 self._shape = shape
326 elif self._shape:
327 shape = self._shape
387 self._shape = shape
414 A tensor that represents decoded image of self._shape, or
415 (?, ?, self._channels) if self._shape is not specified.
455 if self._shape is not None:
456 image = array_ops.reshape(image, self._shape)
    [all...]
  /external/harfbuzz_ng/src/
hb-shaper.cc 33 #define HB_SHAPER_IMPLEMENT(name) {#name, _hb_##name##_shape},
hb-shape-plan.cc 92 this->shaper_func = _hb_##shaper##_shape; \
116 else if (shapers[i].func == _hb_##shaper##_shape) \
390 _hb_##shaper##_shape (shape_plan, font, buffer, features, num_features); \
396 else if (shape_plan->key.shaper_func == _hb_##shaper##_shape) \
hb-shaper.hh 40 extern "C" HB_INTERNAL hb_shape_func_t _hb_##name##_shape;
  /external/tensorflow/tensorflow/python/kernel_tests/linalg/
linear_operator_algebra_test.py 49 def _shape(self): member in class:AdjointTest.testRegistration.CustomLinOp
91 def _shape(self): member in class:CholeskyTest.testRegistration.CustomLinOp
141 def _shape(self): member in class:MatmulTest.testRegistration.CustomLinOp
187 def _shape(self): member in class:InverseTest.testRegistration.CustomLinOp
linear_operator_test.py 37 """LinearOperator that implements the methods ._shape and _shape_tensor."""
54 def _shape(self): member in class:LinearOperatorShape
81 def _shape(self): member in class:LinearOperatorMatmulSolve
  /external/tensorflow/tensorflow/contrib/eager/python/
parameter_server.py 163 self._shape = initial_value.get_shape()
175 self._shape = initial_value.get_shape()
198 self._shape = initial_value.get_shape()
  /external/tensorflow/tensorflow/python/autograph/utils/
tensor_list_test.py 34 def _shape(self, shape_tuple): member in class:TensorListTest
43 l = list_ops.empty_tensor_list(self._shape(()), dtypes.int32)
53 l = tl.TensorList(self._shape(()), dtypes.int32)
  /external/tensorflow/tensorflow/python/ops/
gradients_impl.py 392 _shape = array_ops.shape(x)
394 array_ops.concat((_shape, _shape), 0))
resource_variable_ops.py 552 self._shape = initial_value.shape
645 self._shape = tensor_shape.TensorShape(
    [all...]
  /external/tensorflow/tensorflow/python/ops/linalg/
linear_operator_full_matrix.py 172 def _shape(self): member in class:LinearOperatorFullMatrix
linear_operator_adjoint.py 178 def _shape(self): member in class:LinearOperatorAdjoint
linear_operator_inversion.py 191 def _shape(self): member in class:LinearOperatorInversion
linear_operator_lower_triangular.py 182 def _shape(self): member in class:LinearOperatorLowerTriangular
linear_operator_composition.py 191 def _shape(self): member in class:LinearOperatorComposition
linear_operator_diag.py 188 def _shape(self): member in class:LinearOperatorDiag
linear_operator.py 259 def _shape(self): member in class:LinearOperator
261 raise NotImplementedError("_shape is not implemented.")
274 return self._shape()
    [all...]
linear_operator_identity.py 290 def _shape(self): member in class:LinearOperatorIdentity
626 def _shape(self): member in class:LinearOperatorScaledIdentity
linear_operator_block_diag.py 218 def _shape(self): member in class:LinearOperatorBlockDiag
  /external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
decoder.py 355 def _shape(batch_size, from_shape): function in function:dynamic_decode
372 element_shape=_shape(decoder.batch_size, s))
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_properties_test.cc 1131 auto _shape = tensorflow::ops::AsNodeOut(s, shape); local
1157 auto _shape = tensorflow::ops::AsNodeOut(s, shape); local
1187 auto _shape = tensorflow::ops::AsNodeOut(s, shape); local
1221 auto _shape = tensorflow::ops::AsNodeOut(s, shape); local
    [all...]
  /external/tensorflow/tensorflow/python/keras/
metrics.py     [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
losses_test.py     [all...]

Completed in 647 milliseconds

1 2