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


Python PyTorch mul用法及代碼示例


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

用法:

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

參數

  • input(Tensor) -輸入張量。

  • other(Tensor或者數字) -

關鍵字參數

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

input 乘以 other

支持廣播到通用形狀、類型提升以及整數、浮點數和複雜輸入。

例子:

>>> a = torch.randn(3)
>>> a
tensor([ 0.2015, -0.4255,  2.6087])
>>> torch.mul(a, 100)
tensor([  20.1494,  -42.5491,  260.8663])

>>> b = torch.randn(4, 1)
>>> b
tensor([[ 1.1207],
        [-0.3137],
        [ 0.0700],
        [ 0.8378]])
>>> c = torch.randn(1, 4)
>>> c
tensor([[ 0.5146,  0.1216, -0.5244,  2.2382]])
>>> torch.mul(b, c)
tensor([[ 0.5767,  0.1363, -0.5877,  2.5083],
        [-0.1614, -0.0382,  0.1645, -0.7021],
        [ 0.0360,  0.0085, -0.0367,  0.1567],
        [ 0.4312,  0.1019, -0.4394,  1.8753]])

相關用法


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