本文简要介绍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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。