Skip to content

Commit

Permalink
disable print
Browse files Browse the repository at this point in the history
  • Loading branch information
manole-alexandru committed Jul 26, 2023
1 parent 1046e08 commit 92d9cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ def forward(self, x, skipped_input):
x = self.cv2(x)
x = self.upsample(x)
# x2 = self.cv22(skipped_input[1])
print(skipped_input[1].shape)
# print(skipped_input[1].shape)
x = torch.cat((x, skipped_input[1]), 1) # Skip connection

x = self.cv3(x)
Expand Down

0 comments on commit 92d9cc2

Please sign in to comment.