module 'torch.cuda' has no attribute 'current'
时间: 2023-08-21 09:05:25 浏览: 90
根据提供的引用内容,出现"module 'torch.cuda' has no attribute 'current'"的错误可能有以下两个原因:
1. PyTorch版本过旧。请确保你的PyTorch版本在0.4.0以上,可以通过运行"print(torch.__version__)"来检查你的PyTorch版本。如果版本过旧,可以通过更新PyTorch来解决这个问题。
2. sidekit版本不兼容。由于错误是在sidekit下的文件报错,可能是因为PyTorch 0.4.1适配的是sidekit 1.2.3版本。你可以尝试降低sidekit的版本来解决这个问题。
综上所述,解决"module 'torch.cuda' has no attribute 'current'"错误的方法是确保你的PyTorch版本在0.4.0以上,并检查sidekit的版本是否与PyTorch兼容。
相关问题
AttributeError: module 'torch.utils.data' has no attribute 'collate' AttributeError: module 'torch.utils.data' has no attribute 'collate' AttributeError: module 'torch.utils.data' has no attribute 'collate' AttributeError: module 'torch.utils.data' has no attribute 'collate' AttributeError: module 'torch.utils.data' has no attribute 'collate' AttributeError: module 'torch.utils.data' has no attribute 'collate' AttributeError: module 'torch.utils.data' has no attribute 'collate' module 'torch.utils.data' has no attribute 'collate'
这个错误通常发生在使用了旧版本的PyTorch库时。`torch.utils.data.collate`是在较新的PyTorch版本中引入的函数,用于将样本列表转换为批量数据。建议你更新你的PyTorch库到最新版本,以解决这个问题。你可以使用以下命令来更新PyTorch:
```
pip install --upgrade torch
```
如果你已经安装了`torch`,可以使用以下命令来获取最新版本:
```
pip install --upgrade torch --no-cache-dir
```
请确保在运行这些命令之前,你已经安装了适合你系统的Python包管理器(如`pip`)。希望这可以帮助你解决问题!如果还有其他问题,请随时提问。
AttributeError:module torch.backends has no attribute mps
这个错误通常是由于 PyTorch 版本与 CUDA 版本不兼容导致的。你可以尝试更新 PyTorch 或者降低 CUDA 版本,使它们兼容。
如果你使用的是 PyTorch 1.9.0 及以上版本,可以尝试将环境变量 `CUDA_LAUNCH_BLOCKING` 设置为 1,然后重新运行代码。这个环境变量可以避免一些 CUDA 启动时的问题,可能会解决这个错误。
如果问题仍然存在,你可以查看 PyTorch 的官方文档或者在 PyTorch 的 GitHub 上提交一个 issue 寻求帮助。
阅读全文