Skip to content

Commit 8d15c28

Browse files
committed
del print
1 parent 1901eb7 commit 8d15c28

File tree

1 file changed

+0
-2
lines changed
  • segmentation_models_pytorch/decoders/pan

1 file changed

+0
-2
lines changed

segmentation_models_pytorch/decoders/pan/decoder.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,7 @@ def forward(self, x):
123123
mid = self.mid(x)
124124
x1 = self.down1(x)
125125
x2 = self.down2(x1)
126-
print(x2.shape)
127126
x3 = self.down3(x2)
128-
print(x3.shape)
129127
x3 = F.interpolate(x3, size=(h // 4, w // 4), **upscale_parameters)
130128

131129
x2 = self.conv2(x2)

0 commit comments

Comments
 (0)