tensor中数据类型的相互转换

Pytorch中的Tensor常用的类型转换函数

    tensor数据类型转换

   例如:

   a = tensor(282, device='cuda:0')

  b = int(a)

 print(b)  # 282,int类型
    在tensor的后面添加: .int()、.float()、.double()等.
    同时也可以使用 .to(type) 进行实现。
    同时也可以使用 type()函数 ,data为Tensor数据类型,data.type()为给出data的类型,如果使用data.type(torch.FloatTensor)则强制转换为torch.FloatTensor类型张量。当你不知道要转换为什么类型时,但需要求a1,a2两个张量的乘积,可以使用a1.type_as(a2)将a1转换为a2同类型。
    tensor<–>numpy
    Tensor---->Numpy 使用 tensor.numpy(),tensor为Tensor变量
    Numpy ----> Tensor 使用 torch.from_numpy(data),data为numpy变量
    tensor<–>Python
    Tensor ----> 单个Python数据,使用data.item(),data为Tensor变量且只能为包含单个数据
    Tensor ----> Python list,使用data.tolist(),data为Tensor变量,返回shape相同的可嵌套的list
    数据存储位置转换
    CPU张量 ----> GPU张量,使用data.cuda()
    GPU张量 ----> CPU张量,使用data.cpu()
 

  • 4
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要将一个tensor转换为不同的数据类型,可以使用torch提供的不同的方法。以下是一些常见的类型转换方法: 1. 使用`torch.long()`将tensor转换为长整型(long)类型。例如: `img = tensor.long()` 2. 使用`torch.half()`将tensor转换为半精度浮点类型。例如: `img = tensor.half()` 3. 使用`torch.int()`将tensor转换为整型(int)类型。例如: `img = tensor.int()` 4. 使用`torch.double()`将tensor转换为双精度浮点类型。例如: `img = tensor.double()` 5. 使用`torch.float()`将tensor转换为浮点类型。例如: `img = tensor.float()` 6. 使用`torch.char()`将tensor转换为字符类型(char)。例如: `img = tensor.char()` 7. 使用`torch.byte()`将tensor转换为字节类型(byte)。例如: `img = tensor.byte()` 8. 使用`torch.short()`将tensor转换为短整型(short)。例如: `img = tensor.short()` 请根据你的需求选择合适的转换方法,并用相应的代码将tensor转换为目标类型。注意,在转换的过程tensor的值可能会发生改变,所以请确保你的转换是正确的和适合你的需求。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [Tensor类型之间的相互转换](https://blog.csdn.net/wangshuhuan1/article/details/126057080)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [Tensorflow笔记(一)Tensor数据类型转换](https://blog.csdn.net/qq_64746121/article/details/127293000)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值