pytorch-tensor创建,类型转换

Posted yeran

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytorch-tensor创建,类型转换相关的知识,希望对你有一定的参考价值。

1.查看数据类型
常用类型有 : torch.IntTensor、 torch.FloatTensor
torch.Tensor是默认的tensor类型(torch.FloatTensor)的简称
tensor.dtype
2.类型转换

方法一:简单后缀转换

tensor.int()
tensor.float()
tensor.double()

方法二:使用torch.type()函数

tensor.type(torch.FloatTensor)

方法三:使用type_as(tensor)将tensor转换为指定tensor的类型

3.tensor创建--指定维度和数据类型
torch.IntTensor(3,4).zero_()
torch.Tensor(3,4).zero_()

以上是关于pytorch-tensor创建,类型转换的主要内容,如果未能解决你的问题,请参考以下文章

PyTorch-Tensor

Python 实战基础Pandas中Series的创建和数据类型转换

PHP 变量类型的强制转换 & 创建空对象

spring类型转换器(一)

通过构造函数隐式类类型转换创建的临时对象啥时候被销毁

4-Python3 数据类型转换