Skip to content

Commit d640193

Browse files
Update src/nncf/openvino/statistics/helpers.py
Co-authored-by: Alexander Dokuchaev <alexander.dokuchaev@intel.com>
1 parent 79148b4 commit d640193

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/nncf/openvino/statistics/helpers.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ def get_mean_statistic_collector(
3939
reducer = OVMeanPerChanelReducer(channel_axis=channel_axis, inplace=inplace)
4040
shape_reducer = OVShapeReducer(inplace=inplace)
4141

42-
kwargs = {
43-
"num_samples": num_samples,
44-
"window_size": window_size,
45-
}
46-
aggregate_mean = MeanAggregator(**kwargs)
42+
aggregate_mean = MeanAggregator(num_samples=num_samples, window_size=window_size)
4743
aggregate_noop = NoopAggregator(num_samples=1, return_first=True)
4844

4945
collector = TensorCollector(MeanTensorStatistic)

0 commit comments

Comments
 (0)