Skip to content

Commit aac080e

Browse files
Fix rebase
1 parent 14726db commit aac080e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/nncf/quantization/algorithms/weight_compression/scale_estimation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,6 @@ def activations_to_wc_statistics(activations: list[Tensor], input_channel_axis:
390390
# negative axis (e.g. -1 for the last axis) is converted into corresponding positive value
391391
input_channel_axis = input_channel_axis % len(act.shape)
392392
reduction_shape = tuple(i for i in range(len(act.shape)) if i != input_channel_axis)
393-
reduction_shape = tuple(range(act.ndim - 1))
394393
mean_values.append(fns.mean(act, axis=reduction_shape))
395394
wc_statistics = WCTensorStatistic(mean_values, shapes)
396395
return wc_statistics

0 commit comments

Comments
 (0)