基本张量类型及检测

基本类型

Data typeCPU tensorGPU tensor
32-bit floating pointtorch.FloatTensortorch.cuda.FloatTensor
64-bit floating pointtorch.DoubleTensortorch.cuda.DoubleTensor
16-bit floating pointN/Atorch.cuda.HalfTensor
8-bit integer(unsigned)torch.ByteTensortorch.cuda.ByteTensor
8-bit integer(signed)torch.CharTensortorch.cuda.CharTensor
16-bit integer(signed)torch.ShortTensortorch.cuda.ShortTensor
32-bit integer(signed)torch.IntTensortorch.cuda.IntTensor
64-bit integer(signed)torch.LongTensortorch.cuda.LongTensor

torch.Tensor是默认的tensor类型torch.FloatTensor的简称。

类型检测

Pytorch数据类型的检测可以通过三个方式:

1)Python的内置函数type()

2)Tensor的成员函数Tensor.type()

3)Pytorch的工具函数isinstance()

示例代码 test.py

import torch

a = torch.randn(2, 3)
print(a)
print(type(a))
print(a.type())
print(isinstance(a, torch.FloatTensor))

终端命令行及运行结果

<user>python test.py
tensor([[-0.0454,  0.7095, -1.4267],
        [-0.5969,  0.7630,  1.2615]])
<class 'torch.Tensor'>
torch.FloatTensor
True

从运行结果来看:

(1)Python的内置函数type()只能检测到Tensor类型。

(2)Tensor的成员函数Tensor.type()能检测到Tensor类型的具体类型。

(3)Pytorch的工具函数isinstance()能判断某数据是否属于某个数据类型。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值