当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch is_storage()用法及代码示例


PyTorch torch.is_storage()如果obj是PyTorch存储对象,则方法返回True。

用法: torch.is_storage(object) 

参数

  • object:这是要测试的输入张量。

返回:它返回True或False。

让我们借助几个示例来了解这个概念:
范例1:

# Importing the PyTorch library  
import torch  
    
# A constant tensor of size n 
a = torch.FloatStorage(6) 
print(a) 
  
# Applying the is_storage function and  
# storing the result in 'out' 
out = torch.is_storage(a) 
print(out)

输出:

-30587.265625
 4.555761437366413e-41
 3.906847023468105e-37
 0.0
 4.484155085839415e-44
 0.0
[torch.FloatStorage of size 6]
True

范例2:

# Importing the PyTorch library  
import torch  
    
# A constant tensor of size n 
a = torch.randn(4, 6) 
print(a) 
  
# Applying the is_storage function and  
# storing the result in 'out' 
out = torch.is_storage(a) 
print(out)

输出:

0.4837 -0.3108  0.5945 -0.5967  1.0831  0.0967
-0.0174  0.4937  0.9900 -0.0532 -0.4830 -0.4711
 1.3607 -1.0815  0.4421 -0.2668 -0.5778 -0.0482
-2.0869 -0.8338  1.2260 -0.8849  0.7303 -1.0050
[torch.FloatTensor of size 4x6]
False

相关用法


注:本文由纯净天空筛选整理自PranchalKatiyar大神的英文原创作品 Python – PyTorch is_storage() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。