- tensorstore.IndexTransform.input_labels : tuple[str, ...]
Dimension labels for each input dimension.
Alias for the
labels
property of thedomain
.Example
>>> transform = ts.IndexTransform(input_inclusive_min=[1, 2, 3], ... input_shape=[3, 4, 5], ... input_labels=['x', 'y', 'z']) >>> transform.input_labels ('x', 'y', 'z')