AttributeError: module 'cleanlab' has no attribute 'pruning'
时间: 2023-10-09 19:13:17 浏览: 149
AttributeError: module 'tensorflow.compat.v1' has no attribute '
你遇到的问题是AttributeError: module 'cleanlab' has no attribute 'pruning'。这个问题的解决方法类似于之前提供的例子。可能是因为库的版本不匹配导致的。你可以尝试将torch_pruning库的版本改为0.2.4来解决这个问题。你可以使用以下命令来卸载当前版本的torch_pruning库:
pip uninstall torch_pruning
然后再使用以下命令来安装0.2.4版本的torch_pruning库:
pip install torch_pruning==0.2.4
这样应该就能解决你遇到的问题了。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
阅读全文