From 7bd9e2e40702c3013d2688da6a495f008e66cf37 Mon Sep 17 00:00:00 2001 From: Aleksei Kashapov Date: Wed, 20 Sep 2023 15:28:03 +0200 Subject: [PATCH] update log msg --- nncf/openvino/quantization/quantize_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nncf/openvino/quantization/quantize_model.py b/nncf/openvino/quantization/quantize_model.py index 2b8a9315b8e..8c30879df3e 100644 --- a/nncf/openvino/quantization/quantize_model.py +++ b/nncf/openvino/quantization/quantize_model.py @@ -126,7 +126,7 @@ def native_quantize_if_op_impl( if_ops_number = get_number_if_op(model) all_models_number = if_ops_number * 2 + 1 nncf_logger.info( - f"The model consists of {if_ops_number} If node with then and else bodies. Iteratively main model and all If bodies will be quantized." + f"The model consists of {if_ops_number} If node(-s) with then and else bodies. Main model and all If bodies will be quantized recursively." ) quantized_model, _ = apply_algorithm_if_bodies( quantization_algorithm, model, graph, calibration_dataset, subset_size, 1, all_models_number