赞
踩
方法:
在训练之前加入这一句
#选择使用gpu,如果没有gpu就使用cpu
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
1
2
然后,在训练的代码中会找到 .cuda() ,将所有的都 替换成为.to(device) 即可
(在网络后边和输入输出后边都需要改)
即将
model=model.cuda()
x=x.cuda()
y=y.cuda()
1
2
3
上边的改为下边的!!!!!!!
model=model.to(device)
x=x.to(device)
y=y.to(device)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。