cannot import name 'ResRep' from 'torch.nn.utils.prune' (D:\anaconda\conda\envs\pytorch1.10.1\lib\site-packages\torch\nn\utils\prune.py)
时间: 2023-09-05 10:08:38 浏览: 124
这个错误通常意味着你的PyTorch版本太旧,ResRep是在较新的PyTorch版本中引入的。请尝试更新你的PyTorch版本,可以通过以下命令进行更新:
```
pip install --upgrade torch
```
如果你使用的是conda环境,请使用以下命令更新:
```
conda update pytorch
```
更新后,你应该能够成功导入ResRep。
相关问题
RuntimeError: Could not export Python function call 'F'. Remove calls to Python functions before export. Did you forget to add @script or @script_method annotation? If this is a nn.ModuleList, add it to __constants__: E:\bolang\yolov7-coupling\utils\activations.py(65): forward E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\nn\modules\module.py(860): _slow_forward E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\nn\modules\module.py(887): _call_impl E:\bolang\yolov7-coupling\models\common.py(112): fuseforward E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\nn\modules\module.py(860): _slow_forward E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\nn\modules\module.py(887): _call_impl E:\bolang\yolov7-coupling\models\yolo.py(744): forward_once E:\bolang\yolov7-coupling\models\yolo.py(707): forward E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\nn\modules\module.py(860): _slow_forward E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\nn\modules\module.py(887): _call_impl E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\jit\_trace.py(934): trace_module E:\anaconda\envs\pytorch-1.8.1\lib\site-packages\torch\jit\_trace.py(733): trace E:\bolang\yolov7-coupling\utils\torch_utils.py(363): __init__ E:\bolang\yolov7-coupling\detect.py(39): detect E:\bolang\yolov7-coupling\detect.py(196): <module>
这个错误是由于在导出模型时出现了问题。错误信息中提到了一个名为'F'的 Python 函数调用,但没有添加 `@script` 或 `@script_method` 注释。如果这是一个 `nn.ModuleList`,请将其添加到 `__constants__` 中。请检查您的代码中与这些部分相关的部分,并确保按照 PyTorch 的导出要求进行操作。
Traceback (most recent call last): File "C:\Users\夏芷琳\Desktop\recommendation_model-master\DCN\dcn.py", line 200, in <module> model = DCN(feat_sizes, embedding_size, linear_feature_columns, dnn_feature_columns).to(device) File "D:\Anaconda\envs\pytorch\lib\site-packages\torch\nn\modules\module.py", line 1145, in to return self._apply(convert) File "D:\Anaconda\envs\pytorch\lib\site-packages\torch\nn\modules\module.py", line 797, in _apply module._apply(fn) File "D:\Anaconda\envs\pytorch\lib\site-packages\torch\nn\modules\module.py", line 797, in _apply module._apply(fn) File "D:\Anaconda\envs\pytorch\lib\site-packages\torch\nn\modules\module.py", line 820, in _apply param_applied = fn(param) File "D:\Anaconda\envs\pytorch\lib\site-packages\torch\nn\modules\module.py", line 1143, in convert return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) File "D:\Anaconda\envs\pytorch\lib\site-packages\torch\cuda\__init__.py", line 239, in _lazy_init raise AssertionError("Torch not compiled with CUDA enabled") AssertionError: Torch not compiled with CUDA enabled
这是一个Python程序出现的错误,错误信息是 Torch not compiled with CUDA enabled。这个错误通常是因为你使用的PyTorch版本没有启用CUDA或CUDA安装出现问题。你可以检查你的PyTorch版本是否支持CUDA,或者重新安装PyTorch并确保安装了CUDA。
阅读全文