From 57fa5f336d0ecde96aeaaa2d215a33d679e066c6 Mon Sep 17 00:00:00 2001 From: WuHaobo Date: Fri, 31 Jul 2020 15:00:26 +0800 Subject: [PATCH] remove the debug message --- ppcls/modeling/architectures/regnet.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ppcls/modeling/architectures/regnet.py b/ppcls/modeling/architectures/regnet.py index 43b78e5d..4b637297 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] -- GitLab