本文簡要介紹python語言中 torch.fmod
的用法。
用法:
torch.fmod(input, other, *, out=None) → Tensor
對浮點張量應用 C++ 的std::fmod,對整數張量應用模運算。結果與被除數
input
具有相同的符號,並且其絕對值小於other
的絕對值。支持廣播到通用形狀、類型提升以及整數和浮點輸入。
注意
當除數為零時,為 CPU 和 GPU 上的浮點 dtypes 返回
NaN
;在 CPU 上引發RuntimeError
整數除以零; GPU 上的整數除以零可能會返回任何值。注意
不支持複雜輸入。在某些情況下,用複數滿足模運算的定義在數學上是不可能的。
例子:
>>> torch.fmod(torch.tensor([-3., -2, -1, 1, 2, 3]), 2) tensor([-1., -0., -1., 1., 0., 1.]) >>> torch.fmod(torch.tensor([1, 2, 3, 4, 5]), -1.5) tensor([1.0000, 0.5000, 0.0000, 1.0000, 0.5000])
相關用法
- Python PyTorch fmax用法及代碼示例
- Python PyTorch fmin用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch fft2用法及代碼示例
- Python PyTorch fftn用法及代碼示例
- Python PyTorch flip用法及代碼示例
- Python PyTorch frombuffer用法及代碼示例
- Python PyTorch float_power用法及代碼示例
- Python PyTorch floor_divide用法及代碼示例
- 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 flipud用法及代碼示例
- Python PyTorch fliplr用法及代碼示例
- 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 fork用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.fmod。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。