本文简要介绍python语言中 torch.std
的用法。
用法:
torch.std(input, dim, unbiased, keepdim=False, *, out=None) → Tensor
如果
unbiased
是True
,将使用贝塞尔校正。否则,将计算样本偏差,而不进行任何校正。torch.std(input, unbiased) → Tensor
计算
input
张量中所有元素的标准差。如果
unbiased
是True
,将使用贝塞尔校正。否则,将计算样本偏差,而不进行任何校正。例子:
>>> a = torch.tensor([[-0.8166, -1.3802, -0.3560]]) >>> torch.std(a, unbiased=False) tensor(0.4188)
参数:
关键字参数:
相关用法
- Python PyTorch std_mean用法及代码示例
- Python PyTorch start_processes用法及代码示例
- Python PyTorch stash用法及代码示例
- Python PyTorch saved_tensors_hooks用法及代码示例
- Python PyTorch sqrt用法及代码示例
- Python PyTorch skippable用法及代码示例
- Python PyTorch squeeze用法及代码示例
- Python PyTorch square用法及代码示例
- Python PyTorch save_on_cpu用法及代码示例
- Python PyTorch scatter_object_list用法及代码示例
- Python PyTorch skip_init用法及代码示例
- Python PyTorch simple_space_split用法及代码示例
- Python PyTorch sum用法及代码示例
- Python PyTorch sub用法及代码示例
- Python PyTorch sparse_csr_tensor用法及代码示例
- Python PyTorch sentencepiece_numericalizer用法及代码示例
- Python PyTorch symeig用法及代码示例
- Python PyTorch sinh用法及代码示例
- Python PyTorch sinc用法及代码示例
- Python PyTorch spectral_norm用法及代码示例
- Python PyTorch slogdet用法及代码示例
- Python PyTorch symbolic_trace用法及代码示例
- Python PyTorch shutdown用法及代码示例
- Python PyTorch sgn用法及代码示例
- Python PyTorch set_flush_denormal用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.std。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。