diff --git a/ppcls/modeling/architectures/regnet.py b/ppcls/modeling/architectures/regnet.py index 43b78e5d6d552e65bfb36725c2273071fae4873b..4b63729788c914334f4cfd469de081712a0c6041 100644 --- a/ppcls/modeling/architectures/regnet.py +++ b/ppcls/modeling/architectures/regnet.py @@ -193,7 +193,6 @@ class RegNet(): name=bn_name + '.output.1', moving_mean_name=bn_name + '_mean', moving_variance_name=bn_name + '_variance', ) - # todo: to check the bn layer's eps and momentum, and relu_inplace def shortcut(self, input, ch_out, stride, name): ch_in = input.shape[1]