We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78a12ee commit c601bb3Copy full SHA for c601bb3
src/llmcompressor/transformers/utils/helpers.py
@@ -61,9 +61,14 @@ def detect_last_checkpoint(
61
return last_checkpoint
62
63
64
-def is_model_quantized_from_path(path: str):
+def is_model_quantized_from_path(path: str) -> bool:
65
"""
66
- Determine if model is quantized based on the config
+ Determine if model from path is quantized based
67
+ on the config
68
+
69
+ :param path: path to the model or HF stub
70
+ :return: Boolean if the path has the quantization_config
71
72
73
config = AutoConfig.from_pretrained(path)
74
if config is not None:
0 commit comments