From 89b797ae864b6dd98ff2f9d79ccb3707a334ad10 Mon Sep 17 00:00:00 2001 From: zhaojichen Date: Mon, 27 Apr 2020 02:55:56 -0400 Subject: [PATCH] fix doc problems --- mindspore/nn/layer/normalization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/nn/layer/normalization.py b/mindspore/nn/layer/normalization.py index ffde5cecec..d0bafec55c 100644 --- a/mindspore/nn/layer/normalization.py +++ b/mindspore/nn/layer/normalization.py @@ -170,7 +170,7 @@ class _BatchNorm(Cell): @constexpr def _channel_check(channel, num_channel): if channel != num_channel: - raise ValueError("the input channel is not equal with num_channels") + raise ValueError("the input channel is not equal with num_channel") class BatchNorm1d(_BatchNorm): r"""