From eb74afe417636a17c6b37e894922523c05a1714f Mon Sep 17 00:00:00 2001 From: Nikita Malinin Date: Wed, 23 Mar 2022 11:17:42 +0300 Subject: [PATCH] Fix FBC missed spaces (#11091) --- .../algorithms/quantization/fast_bias_correction/algorithm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/pot/openvino/tools/pot/algorithms/quantization/fast_bias_correction/algorithm.py b/tools/pot/openvino/tools/pot/algorithms/quantization/fast_bias_correction/algorithm.py index 077a63b5602..4b887bf79dc 100755 --- a/tools/pot/openvino/tools/pot/algorithms/quantization/fast_bias_correction/algorithm.py +++ b/tools/pot/openvino/tools/pot/algorithms/quantization/fast_bias_correction/algorithm.py @@ -159,8 +159,8 @@ class FastBiasCorrection(Algorithm): bias = nu.get_bias_for_node(op_node) after_biased_conv = nu.get_node_output(bias, 0)[0] after_biased_conv_name = get_quantized_input_key(after_biased_conv) - inputs_outputs_layout[after_biased_conv_name] = \ - {"shape": TensorStatistic(func=lambda x, **kwargs: x.shape, shape_for_inference=True)} + inputs_outputs_layout[after_biased_conv_name] = \ + {"shape": TensorStatistic(func=lambda x, **kwargs: x.shape, shape_for_inference=True)} return inputs_outputs_layout