Home
last modified time | relevance | path

Searched refs:ragged_shape (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/python/ops/structured/
Dstructured_tensor.py111 ragged_shape: dynamic_ragged_shape.DynamicRaggedShape):
113 self._ragged_shape = ragged_shape
140 ragged_shape=_dynamic_ragged_shape_init(fields, shape, nrows,
145 cls, ragged_shape: dynamic_ragged_shape.DynamicRaggedShape
155 return StructuredTensor(fields={}, ragged_shape=ragged_shape)
247 return cls(fields=fields, ragged_shape=shape)
298 return StructuredTensor(fields=fields, ragged_shape=shape)
1562 ragged_shape = value._ragged_shape._merge_dims( # pylint: disable=protected-access
1564 return StructuredTensor(fields, ragged_shape)
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_tensor.py1843 ragged_shape = self.shape
1845 if ragged_shape.rank is not None and not isinstance(shape, ops.Tensor):
1850 output_shape = ragged_shape
1856 for (s1, s2) in zip(shape.as_list(), ragged_shape.as_list())
Dragged_array_ops.py1101 def ragged_shape( function