From aa13c149440cbe3f48f4fb728d0bfb1f14bed4ff Mon Sep 17 00:00:00 2001 From: kai00 Date: Sat, 19 Sep 2020 18:05:09 +0800 Subject: [PATCH] log level change --- mindspore/lite/tools/converter/quantizer/quantize_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/lite/tools/converter/quantizer/quantize_util.h b/mindspore/lite/tools/converter/quantizer/quantize_util.h index 979c0c3518c..b09d18193b0 100644 --- a/mindspore/lite/tools/converter/quantizer/quantize_util.h +++ b/mindspore/lite/tools/converter/quantizer/quantize_util.h @@ -124,7 +124,7 @@ STATUS QuantFilter(ParamValueLitePtr weight, std::shared_ptr primiti auto dims = weight->tensor_shape(); if (per_channel) { if (dims.size() != 4) { - MS_LOG(ERROR) << "weight dims size: " << dims.size() << " switch to per-layer quant mode."; + MS_LOG(INFO) << "weight dims size: " << dims.size() << " switch to per-layer quant mode."; per_channel = false; } else { uint32_t channels = dims[0];