mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Add a specific error if HQQ is missing
This commit is contained in:
parent
366c93a008
commit
fb8ee9f7ff
@ -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…
Reference in New Issue
Block a user