Skip to content

Commit ac18adb

Browse files
committed
Remove debug print from RexNet
1 parent c53ec33 commit ac18adb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

timm/models/rexnet.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def __init__(self, channels, reduction=16, act_layer=nn.ReLU, divisor=1, reducti
6161
super(SEWithNorm, self).__init__()
6262
self.avg_pool = nn.AdaptiveAvgPool2d(1)
6363
reduction_channels = reduction_channels or make_divisible(channels // reduction, divisor=divisor)
64-
print(reduction_channels)
6564
self.fc1 = nn.Conv2d(
6665
channels, reduction_channels, kernel_size=1, padding=0, bias=True)
6766
self.bn = nn.BatchNorm2d(reduction_channels)

0 commit comments

Comments
 (0)