Commit d6cf1442 authored by Casper Hansen's avatar Casper Hansen
Browse files

Disable fused layers

parent 90bf52c7
......@@ -12,7 +12,7 @@ def run_eval(model_path, quant_file, device, tasks, task_batch_size, task_n_shot
if task_use_pretrained:
model = AutoAWQForCausalLM.from_pretrained(model_path)
else:
model = AutoAWQForCausalLM.from_quantized(model_path, quant_file)
model = AutoAWQForCausalLM.from_quantized(model_path, quant_file, fuse_layers=False)
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment