本文簡要介紹python語言中 torch.nanmean
的用法。
用法:
torch.nanmean(input, dim=None, keepdim=False, *, dtype=None, out=None) → Tensor
dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。如果指定,則在執行操作之前將輸入張量強製轉換為dtype
。這對於防止數據類型溢出很有用。默認值:無。out(Tensor,可選的) -輸出張量。
計算沿指定維度的所有
non-NaN
元素的平均值。當
input
張量中沒有NaN
值時,此函數與torch.mean()
相同。在存在NaN
的情況下,torch.mean()
會將NaN
傳播到輸出,而torch.nanmean()
將忽略NaN
值(torch.nanmean(a)
相當於torch.mean(a[~a.isnan()])
)。如果
keepdim
是True
,則輸出張量的大小與input
相同,但在維度dim
中它的大小為 1。否則,dim
被壓縮(參見torch.squeeze()
),導致輸出張量的維度少 1 個(或len(dim)
)。例子:
>>> x = torch.tensor([[torch.nan, 1, 2], [1, 2, 3]]) >>> x.mean() tensor(nan) >>> x.nanmean() tensor(1.8000) >>> x.mean(dim=0) tensor([ nan, 1.5000, 2.5000]) >>> x.nanmean(dim=0) tensor([1.0000, 1.5000, 2.5000]) # If all elements in the reduced dimensions are NaN then the result is NaN >>> torch.tensor([torch.nan]).nanmean() tensor(nan)
參數:
關鍵字參數:
相關用法
- Python PyTorch nanmedian用法及代碼示例
- Python PyTorch nanquantile用法及代碼示例
- Python PyTorch nansum用法及代碼示例
- 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.nanmean。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。