tensorstore.IndexTransform.domain : IndexDomain

Input domain of the index transform.

Example

>>> transform = ts.IndexTransform(input_shape=[3, 4, 5],
...                               input_labels=["x", "y", "z"])
>>> transform.domain
{ "x": [0, 3), "y": [0, 4), "z": [0, 5) }