Skip to content

Commit

Permalink
make argument non case-sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerogoki00 committed Mar 13, 2023
1 parent b746250 commit e1c952c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def load_model(model_name):
elif shared.args.gptq_bits > 0:
from modules.quant_loader import load_quantized

model = load_quantized(model_name, shared.args.gptq_model_type)
model = load_quantized(model_name, shared.args.gptq_model_type.lower())

# Custom
else:
Expand Down

0 comments on commit e1c952c

Please sign in to comment.