- tensorstore.IndexTransform.implicit_upper_bounds : tuple[bool, ...]
Indicates whether the upper bound of each input dimension is implicit or explicit.
Alias for the
implicit_upper_bounds
property of thedomain
.Example
>>> transform = ts.IndexTransform(input_rank=3) >>> transform.implicit_upper_bounds (True, True, True) >>> transform = ts.IndexTransform(input_shape=[2, 3, 4]) >>> transform.implicit_upper_bounds (False, False, False) >>> transform = ts.IndexTransform(input_inclusive_min=[4, 5, 6]) >>> transform.implicit_upper_bounds (True, True, True) >>> transform = ts.IndexTransform( ... input_exclusive_max=[4, 5, 6], ... implicit_upper_bounds=[False, True, False]) >>> transform.implicit_upper_bounds (False, True, False)