本文簡要介紹python語言中 torch.nansum
的用法。
用法:
torch.nansum(input, *, dtype=None) → Tensor
input(Tensor) -輸入張量。
dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。如果指定,則在執行操作之前將輸入張量強製轉換為dtype
。這對於防止數據類型溢出很有用。默認值:無。dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。如果指定,則在執行操作之前將輸入張量強製轉換為dtype
。這對於防止數據類型溢出很有用。默認值:無。返回所有元素的總和,將非數字 (NaN) 視為零。
例子:
>>> a = torch.tensor([1., 2., float('nan'), 4.]) >>> torch.nansum(a) tensor(7.)
torch.nansum(input, dim, keepdim=False, *, dtype=None) → Tensor
返回給定維度
dim
中input
張量的每一行的總和,將非數字 (NaN) 視為零。如果dim
是維度列表,則對所有維度進行歸約。如果
keepdim
是True
,則輸出張量的大小與input
相同,但在維度dim
中它的大小為 1。否則,dim
被壓縮(參見torch.squeeze()
),導致輸出張量的維度少 1 個(或len(dim)
)。例子:
>>> torch.nansum(torch.tensor([1., float("nan")])) 1.0 >>> a = torch.tensor([[1, 2], [3., float("nan")]]) >>> torch.nansum(a) tensor(6.) >>> torch.nansum(a, dim=0) tensor([4., 2.]) >>> torch.nansum(a, dim=1) tensor([3., 3.])
參數:
關鍵字參數:
參數:
關鍵字參數:
相關用法
- Python PyTorch nanquantile用法及代碼示例
- Python PyTorch nanmedian用法及代碼示例
- Python PyTorch nanmean用法及代碼示例
- Python PyTorch nan_to_num用法及代碼示例
- Python PyTorch narrow用法及代碼示例
- Python PyTorch nll_loss用法及代碼示例
- Python PyTorch normal_用法及代碼示例
- Python PyTorch ngrams_iterator用法及代碼示例
- Python PyTorch no_grad用法及代碼示例
- Python PyTorch norm用法及代碼示例
- Python PyTorch noop_hook用法及代碼示例
- Python PyTorch numericalize_tokens_from_iterator用法及代碼示例
- Python PyTorch neg用法及代碼示例
- Python PyTorch normal用法及代碼示例
- Python PyTorch ndtri用法及代碼示例
- Python PyTorch ne用法及代碼示例
- Python PyTorch nextafter用法及代碼示例
- Python PyTorch nonzero用法及代碼示例
- Python PyTorch numel用法及代碼示例
- Python PyTorch ndtr用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch vdot用法及代碼示例
- Python PyTorch ELU用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nansum。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。