- tensorstore.Schema.__repr__(self) str
Returns a string representation based on the
JSON representation
.Example
>>> schema = ts.Schema(rank=5, dtype=ts.uint8) >>> schema Schema({'dtype': 'uint8', 'rank': 5})
Returns a string representation based on the JSON representation
.
Example
>>> schema = ts.Schema(rank=5, dtype=ts.uint8)
>>> schema
Schema({'dtype': 'uint8', 'rank': 5})