We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 630f76c commit 56a5f14Copy full SHA for 56a5f14
src/llmcompressor/modifiers/quantization/gptq/gptq_quantize.py
@@ -165,7 +165,8 @@ def quantize_weight(
165
logger.warning(
166
"Failed to invert hessian due to numerical instability. Consider "
167
"increasing GPTQModifier.dampening_frac, increasing the number "
168
- "of calibration samples, or shuffling the calibration dataset"
+ "of calibration samples, or shuffling the calibration dataset. "
169
+ "Falling back to round-to-nearest for this module."
170
)
171
Hinv = H = torch.eye(num_columns, dtype=H.dtype, device=H.device)
172
0 commit comments