[peft]ImportError: cannot import name ‘is_npu_available‘ from ‘accelerate.utils‘

今天在使用peft库的时候出现了下面的错误,估计是peft刚出来还不太稳定的原因:

ImportError: cannot import name 'is_npu_available' from 'accelerate.utils'

解决方法

pip uninstall peft
pip install peft@git+https://github.com/huggingface/peft.git

卸载后重新安装就可以了。

你可能感兴趣的:(python,llm)