From ac18adb9c3f8b4ff13c35837861b2f8f95ba94cd Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Wed, 29 Jul 2020 11:15:19 -0700 Subject: [PATCH] Remove debug print from RexNet --- timm/models/rexnet.py | 1 - 1 file changed, 1 deletion(-) diff --git a/timm/models/rexnet.py b/timm/models/rexnet.py index 87c594a0..71b8cb62 100644 --- a/timm/models/rexnet.py +++ b/timm/models/rexnet.py @@ -61,7 +61,6 @@ class SEWithNorm(nn.Module): super(SEWithNorm, self).__init__() self.avg_pool = nn.AdaptiveAvgPool2d(1) reduction_channels = reduction_channels or make_divisible(channels // reduction, divisor=divisor) - print(reduction_channels) self.fc1 = nn.Conv2d( channels, reduction_channels, kernel_size=1, padding=0, bias=True) self.bn = nn.BatchNorm2d(reduction_channels)