tensorplay.is_tensor
- tensorplay.is_tensor(obj: Any, /) TypeIs[TensorBase][source]
Returns True if obj is a TensorPlay tensor.
Note that this function is simply doing
isinstance(obj, Tensor). Using thatisinstancecheck is better for type checking with mypy, and more explicit - so it’s recommended to use that instead ofis_tensor.- Parameters:
obj (object) – Object to test
Example:
>>> x = tensorplay.tensor([1, 2, 3]) >>> tensorplay.is_tensor(x) True

