最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

Windows下 pytorch 分布式训练方法

业界 admin 16浏览 0评论

torch1.7 以下版本不支持Windows下的分布式训练,会报错 AttributeError: module ‘torch.distributed‘ has no attribute ‘init_process_group‘

步骤:

1、将本机torch版本升到1.7.0以上,torchvision升到对应的0.8.0版本以上。(1.5~1.8 版本的 torch 代码基本都兼容)

温馨提示:建议离线下载 torch1.7.1 版本,torchvision0.8.2 版本。

下载链接如下:

https://download.pytorch/whl/

2、更换torch版本之后,在Windows下运行之前,将 init_process_group 函数的参数更改为以下内容:

torch.distributed.init_process_group(	backend="gloo", 
									

torch1.7 以下版本不支持Windows下的分布式训练,会报错 AttributeError: module ‘torch.distributed‘ has no attribute ‘init_process_group‘

步骤:

1、将本机torch版本升到1.7.0以上,torchvision升到对应的0.8.0版本以上。(1.5~1.8 版本的 torch 代码基本都兼容)

温馨提示:建议离线下载 torch1.7.1 版本,torchvision0.8.2 版本。

下载链接如下:

https://download.pytorch/whl/

2、更换torch版本之后,在Windows下运行之前,将 init_process_group 函数的参数更改为以下内容:

torch.distributed.init_process_group(	backend="gloo", 
									
发布评论

评论列表 (0)

  1. 暂无评论