Skip to content

Commit

Permalink
Fixed 97 v2
Browse files Browse the repository at this point in the history
  • Loading branch information
manole-alexandru committed May 5, 2023
1 parent a75c19f commit 562bab1
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 @@ -853,9 +853,9 @@ 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, 32, k=3)
self.cv2 = Conv(64, 48, k=3)
self.cv11 = Conv(96, 32, k=3)
self.cv3 = Conv(64, 16, k=3)
self.cv3 = Conv(96, 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 562bab1

Please sign in to comment.