Pytorch Torch Frombuffer
# PyTorch torch.frombuffer Function
* * PyTorch torch Reference Manual](#)
`torch.frombuffer` is a PyTorch function used to create a one-dimensional tensor from a buffer.
### Function Definition
torch.frombuffer(buffer, dtype, count, offset)
* * *
## Usage Example
## Example
```python
import torch
import array
# Create from array
arr = array.array('i', [1, 2, 3, 4, 5])
x = torch.frombuffer(arr, dtype=torch.int32)
print(x)
* * PyTorch torch Reference Manual](#)
YouTip