Pytorch Torch Is_Storage
# PyTorch torch.is_storage Function
* * Pytorch torch Reference](#)
`torch.is_storage` is a function in PyTorch used to check whether an object is a storage object.
### Function Definition
torch.is_storage(obj)
* * *
## Usage Example
## Example
import torch
# Create tensor
x = torch.tensor([1,2,3])
# Check if it is a storage object
print(torch.is_storage(x))
print(torch.is_storage(x.storage()))
Output result:
FalseTrue
* * Pytorch torch Reference](#)
YouTip