Skip to content

Commit

Permalink
In channels UoloX2
Browse files Browse the repository at this point in the history
  • Loading branch information
manole-alexandru committed Jul 26, 2023
1 parent 41fd727 commit 3cb9924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,8 +858,8 @@ def __init__(self, in_channels):
# self.cv22 = Conv(48, 16, k=3)

self.upsample = nn.Upsample(scale_factor=2, mode='nearest')
self.cv2 = Conv(256, 48, k=3)
self.cv3 = Conv(96, 16, k=3)
self.cv2 = Conv(256, 96, k=3)
self.cv3 = Conv(128, 16, k=3)
self.cv4 = Conv(16, 1, act=False)
self.relu = nn.ReLU()
self.dropout_normal = nn.Dropout(0.5)
Expand Down

0 comments on commit 3cb9924

Please sign in to comment.