Pytorch Torch Frac
# PyTorch torch.frac Function
* * Pytorch torch Reference](#)
`torch.frac` is a function in PyTorch used to calculate the fractional part of each element.
### Function Definition
torch.frac(input, out)
* * *
## Usage Example
## Example
import torch
# Compute the fractional part
x = torch.tensor([1.5,2.7,3.1,4.9])
result = torch.frac(x)
print(result)
* * Pytorch torch Reference](#)
YouTip