You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
It seems like lighteval.utils import is_autogptq_available differs the behavior from transformers.utils import is_auto_gptq_available
even tho when auto-gptq is installed.
from transformers.utils import is_auto_gptq_available
from lighteval.utils import is_autogptq_available
print(is_auto_gptq_available())
print(is_autogptq_available())
import importlib
print(importlib.util.find_spec("auto-gptq"))
! pip list | grep "auto-gptq"
# Output
True
False
None
auto-gptq 0.4.2