torch.positive
-
torch.positive(input) → Tensor -
Возвращает
input. Выбрасывает ошибку времени выполнения, еслиinputявляется булевым тензором.- Параметры:
-
input (Tensor) – входной тензор.
Пример:
>>> t = torch.randn(5) >>> t tensor([ 0.0090, -0.2262, -0.0682, -0.2866, 0.3940]) >>> torch.positive(t) tensor([ 0.0090, -0.2262, -0.0682, -0.2866, 0.3940])
© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/1.13/generated/torch.positive.html