module 'torch.nn' has no attribute 'backends'
时间: 2023-08-04 14:06:10 浏览: 653
PyTorch里面的torch.nn.Parameter()详解
3星 · 编辑精心推荐
引用[1]中提到了一个错误合集,其中包括了"module 'torch.nn' has no attribute 'backends'"的错误。根据引用[2]的解释,这个错误可能是由于CUDA版本和apex不兼容所导致的。为了解决这个问题,可以按照引用[3]中的命令进行操作。首先,使用git clone命令克隆apex的仓库,然后进入apex目录,使用git checkout命令切换到指定的版本。接下来,运行python setup.py install --cuda_ext --cpp_ext命令安装apex,并使用pip3 install -v --no-cache-dir ./命令进行验证。这样应该能够解决"module 'torch.nn' has no attribute 'backends'"的问题。
阅读全文