Skip to content

Commit

Permalink
update property instead of item
Browse files Browse the repository at this point in the history
  • Loading branch information
winglian committed Sep 19, 2023
1 parent 91294cf commit a08404b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axolotl/utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def load_model(
LOG.warning("model config does not contain quantization_config information")
else:
if cfg.gptq_disable_exllama is not None:
model_config["disable_exllama"] = cfg.gptq_disable_exllama
model_config.disable_exllama = cfg.gptq_disable_exllama
model_kwargs["quantization_config"] = GPTQConfig(
**model_config.quantization_config
)
Expand Down

0 comments on commit a08404b

Please sign in to comment.