0

我在将自己的样本导入 Jukebox ( https://github.com/openai/jukebox/ ) 时遇到问题,并在尝试选择我的文件时收到此错误消息。“AttributeError:模块'torch.distributed'没有属性'ReduceOp'”

这是一个截图:https ://www.dropbox.com/s/o0cdlpzo3n0u4yg/jukeboxcodeproblem.png?dl=0

有人知道怎么修这个东西吗?到目前为止,我已经按照 readme.md 文件 ( https://github.com/openai/jukebox/ ) 中的所有步骤进行操作。我对编码非常陌生,因此非常感谢所有帮助。

4

1 回答 1

0

看起来我有同样的问题。据我所知,Windows 不支持 pytorch.distributed:https ://pytorch.org/docs/stable/distributed.html

如果你尝试这样的事情:

> python
>>> import torch
>>> import torch.ditributed as dist
>>> dist.is_available()

你会得到“假”

更多信息可以在这里找到:https ://github.com/NVIDIA/apex/issues/429

因此,要使其工作,您需要 Linux 或以某种方式摆脱分发的火炬。

于 2020-05-03T14:13:48.387 回答