tensorstore.IndexTransform.implicit_lower_bounds : tuple[bool, ...]

Indicates whether the lower bound of each input dimension is implicit or explicit.

Alias for the implicit_lower_bounds property of the domain.

Example

>>> transform = ts.IndexTransform(input_rank=3)
>>> transform.implicit_lower_bounds
(True, True, True)
>>> transform = ts.IndexTransform(input_inclusive_min=[2, 3, 4])
>>> transform.implicit_lower_bounds
(False, False, False)
>>> transform = ts.IndexTransform(input_exclusive_max=[2, 3, 4])
>>> transform.implicit_lower_bounds
(True, True, True)
>>> transform = ts.IndexTransform(input_shape=[4, 5, 6])
>>> transform.implicit_lower_bounds
(False, False, False)
>>> transform = ts.IndexTransform(
...     input_inclusive_min=[4, 5, 6],
...     implicit_lower_bounds=[False, True, False])
>>> transform.implicit_lower_bounds
(False, True, False)