Skip to content

Commit

Permalink
Reverted to ultralytics#17
Browse files Browse the repository at this point in the history
  • Loading branch information
manole-alexandru committed Apr 17, 2023
1 parent 0741c06 commit b581bc4
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 @@ -852,9 +852,9 @@ class Seg(nn.Module):
def __init__(self, in_channels):
super().__init__()
print('SEG in channels: ', in_channels)
self.cv1 = Conv(in_channels, 128, k=3)
self.cv1 = Conv(in_channels, 32, k=3)
self.upsample = nn.Upsample(scale_factor=2, mode='nearest')
self.cv2 = Conv(128, 64, k=3)
self.cv2 = Conv(32, 64, k=3)
self.cv3 = Conv(64, 64, k=3)
self.cv4 = Conv(64, 1, act=False)
self.relu = nn.ReLU()
Expand Down

0 comments on commit b581bc4

Please sign in to comment.