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


Python PyTorch logit用法及代碼示例


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

用法:

torch.special.logit(input, eps=None, *, out=None) → Tensor

參數

  • input(Tensor) -輸入張量。

  • eps(float,可選的) -輸入鉗位綁定的 epsilon。默認值:None

關鍵字參數

out(Tensor,可選的) -輸出張量。

返回具有 input 元素的 logit 的新張量。當 eps 不是 None 時,input 被限製為 [eps, 1 - eps]。當 eps 為 None 且 input < 0 或 input > 1 時,該函數將產生 NaN。

例子:

>>> a = torch.rand(5)
>>> a
tensor([0.2796, 0.9331, 0.6486, 0.1523, 0.6516])
>>> torch.special.logit(a, eps=1e-6)
tensor([-0.9466,  2.6352,  0.6131, -1.7169,  0.6261])

相關用法


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