當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PyTorch positive用法及代碼示例


本文簡要介紹python語言中 torch.positive 的用法。

用法:

torch.positive(input) → Tensor

參數

input(Tensor) -輸入張量。

返回 input 。如果 input 是布爾張量,則引發運行時錯誤。

例子:

>>> 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])

相關用法


注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.positive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。