本文簡要介紹python語言中 torch.float_power
的用法。
用法:
torch.float_power(input, exponent, *, out=None) → Tensor
將
input
提高到exponent
的冪,元素級,雙精度。如果兩個輸入都不是複數,則返回torch.float64
張量,如果一個或多個輸入是複數,則返回torch.complex128
張量。注意
此函數始終以雙精度計算,與
torch.pow()
不同,後者實現了更典型的類型提升。當需要在更廣泛或更精確的 dtype 中執行計算時,這很有用,或者計算結果可能包含在輸入 dtype 中無法表示的小數值,例如當整數基數被提升為負整數 index 時。例子:
>>> a = torch.randint(10, (4,)) >>> a tensor([6, 4, 7, 1]) >>> torch.float_power(a, 2) tensor([36., 16., 49., 1.], dtype=torch.float64) >>> a = torch.arange(1, 5) >>> a tensor([ 1, 2, 3, 4]) >>> exp = torch.tensor([2, -3, 4, -5]) >>> exp tensor([ 2, -3, 4, -5]) >>> torch.float_power(a, exp) tensor([1.0000e+00, 1.2500e-01, 8.1000e+01, 9.7656e-04], dtype=torch.float64)
相關用法
- Python PyTorch floor_divide用法及代碼示例
- Python PyTorch floor用法及代碼示例
- Python PyTorch flip用法及代碼示例
- Python PyTorch flipud用法及代碼示例
- Python PyTorch fliplr用法及代碼示例
- Python PyTorch flatten用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch fft2用法及代碼示例
- Python PyTorch fftn用法及代碼示例
- Python PyTorch frombuffer用法及代碼示例
- Python PyTorch fractional_max_pool3d用法及代碼示例
- Python PyTorch frac用法及代碼示例
- Python PyTorch freeze用法及代碼示例
- Python PyTorch fp16_compress_hook用法及代碼示例
- Python PyTorch fftshift用法及代碼示例
- Python PyTorch fake_quantize_per_channel_affine用法及代碼示例
- Python PyTorch fp16_compress_wrapper用法及代碼示例
- Python PyTorch fractional_max_pool2d用法及代碼示例
- Python PyTorch fftfreq用法及代碼示例
- Python PyTorch from_numpy用法及代碼示例
- Python PyTorch filter_wikipedia_xml用法及代碼示例
- Python PyTorch fuse_modules用法及代碼示例
- Python PyTorch fasterrcnn_mobilenet_v3_large_320_fpn用法及代碼示例
- Python PyTorch fmax用法及代碼示例
- Python PyTorch fork用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.float_power。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。