pytorch使用 to 进行类型转换方式
作者:月下花弄影 时间:2022-10-05 23:28:27
在程序中,有多种方法进行强制类型转换。
本博文将介绍一个非常常用的方法:to()方法。
我们通常使用它来进行GPU和CPU的类型转换,但其实也可以用来进行torch的dtype转换。
常见方法:tensor.to(‘cuda:0')
先看官网介绍:
**Performs Tensor dtype and/or device conversion. A torch.dtype and torch.device are inferred from the arguments of self.to(*args, kwargs).
本文举一个例子,将一个tensor转化成与另一个tensor相同的数据类型和相同GPU或CPU类型
import torch
device = 'cuda:0'
a = torch.zeros(2, 3)
print(type(a))
b = torch.ones(3, 4).to(device)
print(type(b))
c = torch.matmul(a, b)
print(type(c))
我们看到这个代码会出错的。因为a和b是不同的device,一个是CPU,一个是GPU,不能运行。
修改如下:
a = a.to(b)
d = torch.matmul(a, b)
print(type(d))
可以看到to还是很好用的,尤其是不确定我们的数据类型和device时。
其实pytorch中还有很多其他方法可以这么做,以后会继续介绍。
来源:https://blog.csdn.net/qq_27261889/article/details/100175612
标签:pytorch,to,类型转换
0
投稿
猜你喜欢
详解Vue开发网站seo优化方法
2024-04-10 13:47:53
Python中json.load()和json.loads()有哪些区别
2022-11-09 09:24:05
spring boot 不连接数据库启动的解决
2024-01-18 06:38:54
查看Django和flask版本的方法
2021-01-29 02:50:11
Git科普文,Git基本原理及各种骚操作(推荐)
2023-09-16 17:04:32
python入门for循环嵌套理解学习
2021-03-01 21:42:16
python 类相关概念理解
2023-02-17 21:16:47
linux环境下配置mysql5.6支持IPV6连接的方法
2024-01-20 01:56:13
CentOS 7安装MySQL的详细步骤
2024-01-25 19:59:17
Python爬虫DNS解析缓存方法实例分析
2021-02-10 11:56:54
Django中的cookie和session
2022-02-21 02:40:42
Python模块介绍与使用详细讲解
2022-08-31 02:38:33
C#Web应用程序入门经典学习笔记之二
2024-06-05 09:28:00
计算机管理服务中找不到mysql的服务的解决办法
2024-01-26 03:31:34
JavaScript实现彩虹文字效果的方法
2024-06-05 09:34:41
workerman写mysql连接池的实例代码
2024-01-20 02:52:26
Pytorch 扩展Tensor维度、压缩Tensor维度的方法
2022-05-29 03:35:32
python轻松过滤处理脏话与特殊敏感词汇
2022-02-07 15:53:28
在js中的replace方法详解
2007-08-21 15:47:00
浅谈Pytorch中的torch.gather函数的含义
2022-12-26 02:25:54