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


Python PyTorch cumprod用法及代碼示例


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

用法:

torch.cumprod(input, dim, *, dtype=None, out=None) → Tensor

參數

  • input(Tensor) -輸入張量。

  • dim(int) -進行操作的維度

關鍵字參數

  • dtype(torch.dtype, 可選的) -返回張量的所需數據類型。如果指定,則在執行操作之前將輸入張量強製轉換為dtype。這對於防止數據類型溢出很有用。默認值:無。

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

返回維度 diminput 的元素的累積乘積。

例如,如果input 是大小為 N 的向量,則結果也將是大小為 N 的向量,其中包含元素。

例子:

>>> a = torch.randn(10)
>>> a
tensor([ 0.6001,  0.2069, -0.1919,  0.9792,  0.6727,  1.0062,  0.4126,
        -0.2129, -0.4206,  0.1968])
>>> torch.cumprod(a, dim=0)
tensor([ 0.6001,  0.1241, -0.0238, -0.0233, -0.0157, -0.0158, -0.0065,
         0.0014, -0.0006, -0.0001])

>>> a[5] = 0.0
>>> torch.cumprod(a, dim=0)
tensor([ 0.6001,  0.1241, -0.0238, -0.0233, -0.0157, -0.0000, -0.0000,
         0.0000, -0.0000, -0.0000])

相關用法


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