Skip to content

Commit 9790ac9

Browse files
committed
change naem
Signed-off-by: Kyle Sayers <[email protected]>
1 parent 81cfe50 commit 9790ac9

File tree

1 file changed

+2
-1
lines changed
  • src/llmcompressor/entrypoints/model_free

1 file changed

+2
-1
lines changed

src/llmcompressor/entrypoints/model_free/helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ def validate_scheme(scheme: QuantizationScheme) -> tuple[str, QuantizationScheme
2727
output_dynamic = getattr_chain(scheme, "output_activations.dynamic", True)
2828
if input_dynamic is not True or output_dynamic is not True:
2929
raise ValueError(
30-
"Weights-only PTQ cannot calibrate activations. "
30+
"Model Free PTQ cannot calibrate activations. "
3131
"Please use `oneshot` instead."
3232
)
3333

3434
# override with static observers
35+
# Remove after https://github.com/vllm-project/compressed-tensors/pull/489
3536
if scheme.weights.observer in ("minmax", "mse"):
3637
new_observer = f"static_{scheme.weights.observer}"
3738
logger.warning(

0 commit comments

Comments
 (0)