深度学习-服务器pytorch多GPU训练踩坑,报错RuntimeError: Error(s) in loading state_dict
服务器上使多块显卡训练pytorch模型,语句如下:iftorch.cuda.device_count()>1:print("Let'suse",torch.cuda.device_count(),"GPUs.")#net=torch.nn.DataParallel(net,device_ids=[0,1,2,3])#指定GPU训练net=torch.nn.DataParallel(net)#使用