Skip to content

Commit c601bb3

Browse files
committed
comment
1 parent 78a12ee commit c601bb3

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/llmcompressor/transformers/utils/helpers.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,14 @@ def detect_last_checkpoint(
6161
return last_checkpoint
6262

6363

64-
def is_model_quantized_from_path(path: str):
64+
def is_model_quantized_from_path(path: str) -> bool:
6565
"""
66-
Determine if model is quantized based on the config
66+
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+
6772
"""
6873
config = AutoConfig.from_pretrained(path)
6974
if config is not None:

0 commit comments

Comments
 (0)