本文簡要介紹python語言中 torch.diff
的用法。
用法:
torch.diff(input, n=1, dim=- 1, prepend=None, append=None) → Tensor
out(Tensor,可選的) -輸出張量。
計算沿給定維度的n-th 前向差異。
first-order 差異由
out[i] = input[i + 1] - input[i]
給出。高階差異通過使用torch.diff()
遞歸計算。注意
當前僅支持
n = 1
例子:
>>> a = torch.tensor([1, 3, 2]) >>> torch.diff(a) tensor([ 2, -1]) >>> b = torch.tensor([4, 5]) >>> torch.diff(a, append=b) tensor([ 2, -1, 2, 1]) >>> c = torch.tensor([[1, 2, 3], [3, 4, 5]]) >>> torch.diff(c, dim=0) tensor([[2, 2, 2]]) >>> torch.diff(c, dim=1) tensor([[1, 1], [1, 1]])
參數:
關鍵字參數:
相關用法
- Python PyTorch diag用法及代碼示例
- Python PyTorch dirac_用法及代碼示例
- Python PyTorch diag_embed用法及代碼示例
- Python PyTorch diagflat用法及代碼示例
- Python PyTorch div用法及代碼示例
- Python PyTorch diagonal用法及代碼示例
- Python PyTorch dist用法及代碼示例
- Python PyTorch digamma用法及代碼示例
- Python PyTorch deform_conv2d用法及代碼示例
- Python PyTorch download_url_to_file用法及代碼示例
- Python PyTorch detect_anomaly用法及代碼示例
- Python PyTorch download_from_url用法及代碼示例
- Python PyTorch dot用法及代碼示例
- Python PyTorch dsplit用法及代碼示例
- Python PyTorch dstack用法及代碼示例
- Python PyTorch deg2rad用法及代碼示例
- Python PyTorch det用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
- Python PyTorch vdot用法及代碼示例
- Python PyTorch ELU用法及代碼示例
- Python PyTorch ScaledDotProduct.__init__用法及代碼示例
- Python PyTorch gumbel_softmax用法及代碼示例
- Python PyTorch get_tokenizer用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.diff。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。