Skip to content

Commit

Permalink
97 exp v5
Browse files Browse the repository at this point in the history
  • Loading branch information
manole-alexandru committed May 6, 2023
1 parent 4ce1cb9 commit 290501c
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 @@ -854,10 +854,10 @@ def __init__(self, in_channels):
self.cv1 = Conv(in_channels, 32, k=3)
self.cv11 = Conv(96, 32, 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.cv2 = Conv(64, 16, k=3)
self.cv22 = Conv(48, 16, k=3)
self.cv3 = Conv(32, 4, k=3)
self.cv4 = Conv(4, 1, act=False)
self.relu = nn.ReLU()
self.dropout_normal = nn.Dropout(0.5)

Expand Down

0 comments on commit 290501c

Please sign in to comment.