Rate this Page

torch.Tensor.item#

Tensor.item()number#

Returns the value of this tensor as a standard Python number. This only worksfor tensors with one element. For other cases, seetolist().

This operation is not differentiable.

Example:

>>>x=torch.tensor([1.0])>>>x.item()1.0