Add a specific error if HQQ is missing
This commit is contained in:
parent
366c93a008
commit
fb8ee9f7ff
1 changed files with 6 additions and 2 deletions
|
@ -413,8 +413,12 @@ def ExLlamav2_HF_loader(model_name):
|
||||||
|
|
||||||
|
|
||||||
def HQQ_loader(model_name):
|
def HQQ_loader(model_name):
|
||||||
from hqq.engine.hf import HQQModelForCausalLM
|
try:
|
||||||
from hqq.core.quantize import HQQLinear, HQQBackend
|
from hqq.engine.hf import HQQModelForCausalLM
|
||||||
|
from hqq.core.quantize import HQQLinear, HQQBackend
|
||||||
|
except ModuleNotFoundError:
|
||||||
|
logger.error("HQQ is not installed. You can install it with:\n\npip install hqq")
|
||||||
|
return None
|
||||||
|
|
||||||
logger.info(f"Loading HQQ model with backend: {shared.args.hqq_backend}")
|
logger.info(f"Loading HQQ model with backend: {shared.args.hqq_backend}")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue