本文簡要介紹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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。