Skip to content

Commit

Permalink
97exp v4
Browse files Browse the repository at this point in the history
  • Loading branch information
manole-alexandru committed May 5, 2023
1 parent ecdc356 commit 4ce1cb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,11 +852,11 @@ class Seg(nn.Module):
def __init__(self, in_channels):
super().__init__()
self.cv1 = Conv(in_channels, 32, k=3)
self.upsample = nn.Upsample(scale_factor=2, mode='nearest')
self.cv2 = Conv(64, 16, k=3)
self.cv11 = Conv(96, 32, k=3)
self.cv22 = Conv(48, 16, k=3)
self.cv3 = Conv(32, 8, k=3)
self.upsample = nn.Upsample(scale_factor=2, mode='nearest')
self.cv2 = Conv(64, 8, k=3)
self.cv22 = Conv(48, 8, k=3)
self.cv3 = Conv(16, 8, k=3)
self.cv4 = Conv(8, 1, act=False)
self.relu = nn.ReLU()
self.dropout_normal = nn.Dropout(0.5)
Expand Down

0 comments on commit 4ce1cb9

Please sign in to comment.