Rate this Page

torch.is_tensor#

torch.is_tensor(obj,/)[source]#

Returns True ifobj is a PyTorch tensor.

Note that this function is simply doingisinstance(obj,Tensor).Using thatisinstance check 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

Return type

TypeIs[Tensor]

Example:

>>>x=torch.tensor([1,2,3])>>>torch.is_tensor(x)True