Rate this Page

torch.positive#

torch.positive(input)Tensor#

Returnsinput.Throws a runtime error ifinput is a bool tensor.

Parameters

input (Tensor) – the input tensor.

Example:

>>>t=torch.randn(5)>>>ttensor([ 0.0090, -0.2262, -0.0682, -0.2866,  0.3940])>>>torch.positive(t)tensor([ 0.0090, -0.2262, -0.0682, -0.2866,  0.3940])