We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb0a69 commit 1680538Copy full SHA for 1680538
src/compressed_tensors/compressors/model_compressors/model_compressor.py
@@ -338,10 +338,10 @@ def __init__(
338
339
self.quantization_compressor = {}
340
for format in self.compression_formats:
341
- self.quantization_compressor[format] = (
342
- BaseCompressor.load_from_registry(
343
- format, config=quantization_config
344
- )
+ self.quantization_compressor[
+ format
+ ] = BaseCompressor.load_from_registry(
+ format, config=quantization_config
345
)
346
347
def get_missing_module_keys(self, model: Module) -> List[str]:
0 commit comments