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


Python PyTorch ldexp用法及代碼示例


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

用法:

torch.ldexp(input, other, *, out=None) → Tensor

參數

  • input(Tensor) -輸入張量。

  • other(Tensor) - index 的張量,通常是整數。

關鍵字參數

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

input 乘以 2**:attr: other

通常,此函數用於通過將 input 中的尾數乘以從 other 中的 index 創建的 2 的整數冪來構造浮點數。

例子:

>>> torch.ldexp(torch.tensor([1.]), torch.tensor([1]))
tensor([2.])
>>> torch.ldexp(torch.tensor([1.0]), torch.tensor([1, 2, 3, 4]))
tensor([ 2.,  4.,  8., 16.])

相關用法


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