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];