diff --git a/gguf-py/gguf/quants.py b/gguf-py/gguf/quants.py index 1d0de0f4..eed78d93 100644 --- a/gguf-py/gguf/quants.py +++ b/gguf-py/gguf/quants.py @@ -61,7 +61,6 @@ def quantize(data: np.ndarray, qtype: GGMLQuantizationType) -> np.ndarray: elif (q := _type_traits.get(qtype)) is not None: return q.quantize(data) else: - print(_type_traits) raise NotImplementedError(f"Quantization for {qtype.name} is not yet implemented")