2023-05-17 10:12:12 -04:00
|
|
|
import logging
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from auto_gptq import AutoGPTQForCausalLM
|
|
|
|
|
|
|
|
import modules.shared as shared
|
|
|
|
from modules.models import get_max_memory_dict
|
|
|
|
|
|
|
|
|
|
|
|
def load_quantized(model_name):
|
|
|
|
path_to_model = Path(f'{shared.args.model_dir}/{model_name}')
|
|
|
|
pt_path = None
|
|
|
|
use_safetensors = False
|
|
|
|
|
|
|
|
# Find the model checkpoint
|
2023-05-17 14:52:23 -04:00
|
|
|
for ext in ['.safetensors', '.pt', '.bin']:
|
|
|
|
found = list(path_to_model.glob(f"*{ext}"))
|
|
|
|
if len(found) > 0:
|
|
|
|
if len(found) > 1:
|
|
|
|
logging.warning(f'More than one {ext} model has been found. The last one will be selected. It could be wrong.')
|
|
|
|
|
|
|
|
pt_path = found[-1]
|
|
|
|
break
|
|
|
|
|
|
|
|
if pt_path is None:
|
|
|
|
logging.error("The model could not be loaded because its checkpoint file in .bin/.pt/.safetensors format could not be located.")
|
|
|
|
return
|
2023-05-17 10:12:12 -04:00
|
|
|
|
|
|
|
# Define the params for AutoGPTQForCausalLM.from_quantized
|
|
|
|
params = {
|
|
|
|
'model_basename': pt_path.stem,
|
|
|
|
'device': "cuda:0" if not shared.args.cpu else "cpu",
|
|
|
|
'use_triton': shared.args.triton,
|
|
|
|
'use_safetensors': use_safetensors,
|
|
|
|
'max_memory': get_max_memory_dict()
|
|
|
|
}
|
|
|
|
|
|
|
|
logging.warning(f"The AutoGPTQ params are: {params}")
|
|
|
|
model = AutoGPTQForCausalLM.from_quantized(path_to_model, **params)
|
|
|
|
return model
|