Skip to content

Commit 961cd74

Browse files
remove use_liger_kernel param (#478)
1 parent 57c29ec commit 961cd74

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

gptqmodel/models/auto.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,13 @@ def from_pretrained(
106106
pretrained_model_name_or_path: str,
107107
quantize_config: QuantizeConfig,
108108
trust_remote_code: bool = False,
109-
use_liger_kernel: bool = False,
110109
**model_init_kwargs,
111110
) -> BaseGPTQModel:
112111
model_type = check_and_get_model_type(pretrained_model_name_or_path, trust_remote_code)
113112
return MODEL_MAP[model_type].from_pretrained(
114113
pretrained_model_name_or_path=pretrained_model_name_or_path,
115114
quantize_config=quantize_config,
116115
trust_remote_code=trust_remote_code,
117-
use_liger_kernel=use_liger_kernel,
118116
**model_init_kwargs,
119117
)
120118

0 commit comments

Comments
 (0)