本文簡要介紹python語言中 torch.mean
的用法。
用法:
torch.mean(input, *, dtype=None) → Tensor
input(Tensor) -輸入張量。
dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。如果指定,則在執行操作之前將輸入張量強製轉換為dtype
。這對於防止數據類型溢出很有用。默認值:無。dtype(
torch.dtype
, 可選的) -返回張量的所需數據類型。如果指定,則在執行操作之前將輸入張量強製轉換為dtype
。這對於防止數據類型溢出很有用。默認值:無。out(Tensor,可選的) -輸出張量。
返回
input
張量中所有元素的平均值。例子:
>>> a = torch.randn(1, 3) >>> a tensor([[ 0.2294, -0.5481, 1.3288]]) >>> torch.mean(a) tensor(0.3367)
torch.mean(input, dim, keepdim=False, *, dtype=None, out=None) → Tensor
返回給定維度
dim
中input
張量的每一行的平均值。如果dim
是維度列表,則對所有維度進行歸約。如果
keepdim
是True
,則輸出張量的大小與input
相同,但在維度dim
中它的大小為 1。否則,dim
被壓縮(參見torch.squeeze()
),導致輸出張量的維度少 1 個(或len(dim)
)。例子:
>>> a = torch.randn(4, 4) >>> a tensor([[-0.3841, 0.6320, 0.4254, -0.7384], [-0.9644, 1.0131, -0.6549, -1.4279], [-0.2951, -1.3350, -0.7694, 0.5600], [ 1.0842, -0.9580, 0.3623, 0.2343]]) >>> torch.mean(a, 1) tensor([-0.0163, -0.5085, -0.4599, 0.1807]) >>> torch.mean(a, 1, True) tensor([[-0.0163], [-0.5085], [-0.4599], [ 0.1807]])
參數:
關鍵字參數:
參數:
關鍵字參數:
相關用法
- Python PyTorch meshgrid用法及代碼示例
- Python PyTorch median用法及代碼示例
- Python PyTorch monitored_barrier用法及代碼示例
- Python PyTorch multinomial用法及代碼示例
- Python PyTorch matrix_rank用法及代碼示例
- Python PyTorch mm用法及代碼示例
- Python PyTorch mv用法及代碼示例
- Python PyTorch min用法及代碼示例
- Python PyTorch max用法及代碼示例
- Python PyTorch msort用法及代碼示例
- Python PyTorch mode用法及代碼示例
- Python PyTorch movedim用法及代碼示例
- Python PyTorch matrix_exp用法及代碼示例
- Python PyTorch matmul用法及代碼示例
- Python PyTorch matrix_power用法及代碼示例
- Python PyTorch maximum用法及代碼示例
- Python PyTorch masked_select用法及代碼示例
- Python PyTorch maskrcnn_resnet50_fpn用法及代碼示例
- Python PyTorch minimum用法及代碼示例
- Python PyTorch multi_dot用法及代碼示例
- Python PyTorch mul用法及代碼示例
- Python PyTorch movielens_25m用法及代碼示例
- Python PyTorch matrix_norm用法及代碼示例
- Python PyTorch multigammaln用法及代碼示例
- Python PyTorch movielens_20m用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.mean。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。