We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57c29ec commit 961cd74Copy full SHA for 961cd74
gptqmodel/models/auto.py
@@ -106,15 +106,13 @@ def from_pretrained(
106
pretrained_model_name_or_path: str,
107
quantize_config: QuantizeConfig,
108
trust_remote_code: bool = False,
109
- use_liger_kernel: bool = False,
110
**model_init_kwargs,
111
) -> BaseGPTQModel:
112
model_type = check_and_get_model_type(pretrained_model_name_or_path, trust_remote_code)
113
return MODEL_MAP[model_type].from_pretrained(
114
pretrained_model_name_or_path=pretrained_model_name_or_path,
115
quantize_config=quantize_config,
116
trust_remote_code=trust_remote_code,
117
- use_liger_kernel=use_liger_kernel,
118
119
)
120
0 commit comments