本文简要介绍python语言中 torch.nan_to_num
的用法。
用法:
torch.nan_to_num(input, nan=0.0, posinf=None, neginf=None, *, out=None) → Tensor
input(Tensor) -输入张量。
nan(数字,可选的) -替换
NaN
的值。默认为零。posinf(数字,可选的) -如果是数字,则用该值替换正无穷大值。如果为 None,正无穷大值将替换为
input
的 dtype 可表示的最大有限值。默认为无。neginf(数字,可选的) -如果是数字,则用该值替换负无穷大值。如果为 None,则负无穷大值将替换为
input
的 dtype 可表示的最低有限值。默认为无。
out(Tensor,可选的) -输出张量。
将
input
中的NaN
、正无穷大和负无穷大值分别替换为nan
、posinf
和neginf
指定的值。默认情况下,NaN
s 被替换为 0,正无穷大被替换为input
的 dtype 可表示的最大有限值,负无穷大被替换为input
的 dtype 可表示的最小有限值。例子:
>>> x = torch.tensor([float('nan'), float('inf'), -float('inf'), 3.14]) >>> torch.nan_to_num(x) tensor([ 0.0000e+00, 3.4028e+38, -3.4028e+38, 3.1400e+00]) >>> torch.nan_to_num(x, nan=2.0) tensor([ 2.0000e+00, 3.4028e+38, -3.4028e+38, 3.1400e+00]) >>> torch.nan_to_num(x, nan=2.0, posinf=1.0) tensor([ 2.0000e+00, 1.0000e+00, -3.4028e+38, 3.1400e+00])
参数:
关键字参数:
相关用法
- Python PyTorch nanquantile用法及代码示例
- Python PyTorch nansum用法及代码示例
- Python PyTorch nanmedian用法及代码示例
- Python PyTorch nanmean用法及代码示例
- 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.nan_to_num。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。