Skip to content

Commit

Permalink
del print
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhou0208 committed Dec 5, 2024
1 parent 1901eb7 commit 8d15c28
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions segmentation_models_pytorch/decoders/pan/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,7 @@ def forward(self, x):
mid = self.mid(x)
x1 = self.down1(x)
x2 = self.down2(x1)
print(x2.shape)
x3 = self.down3(x2)
print(x3.shape)
x3 = F.interpolate(x3, size=(h // 4, w // 4), **upscale_parameters)

x2 = self.conv2(x2)
Expand Down

0 comments on commit 8d15c28

Please sign in to comment.