File tree 2 files changed +2
-2
lines changed
algorithms/weight_compression
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ def apply(
140
140
transformation_layout = TransformationLayout ()
141
141
model_transformer = ModelTransformerFactory .create (model , inplace = True )
142
142
143
- is_data_free = statistics is None
143
+ is_data_free = True # statistics is None
144
144
description = "Applying data-free AWQ" if is_data_free else "Applying AWQ"
145
145
146
146
for k , awq_data_item in track (awq_data .items (), description = description ):
Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ def compress_weights(
435
435
sensitivity_metric : Optional [SensitivityMetric ] = None ,
436
436
* ,
437
437
subset_size : int = 128 ,
438
- awq : Optional [bool ] = None ,
438
+ awq : Optional [bool ] = True ,
439
439
scale_estimation : Optional [bool ] = None ,
440
440
gptq : Optional [bool ] = None ,
441
441
lora_correction : Optional [bool ] = None ,
You can’t perform that action at this time.
0 commit comments