Spaces:
Running
Running
Update model/CMFNet.py
Browse files- model/CMFNet.py +1 -1
model/CMFNet.py
CHANGED
|
@@ -188,6 +188,6 @@ class CMFNet(nn.Module):
|
|
| 188 |
concat_feat = self.concat123(torch.cat([x1_out, x2_out, x3_out], 1))
|
| 189 |
x_final = self.tail(concat_feat)
|
| 190 |
|
| 191 |
-
return
|
| 192 |
|
| 193 |
|
|
|
|
| 188 |
concat_feat = self.concat123(torch.cat([x1_out, x2_out, x3_out], 1))
|
| 189 |
x_final = self.tail(concat_feat)
|
| 190 |
|
| 191 |
+
return x_final + mixed_img
|
| 192 |
|
| 193 |
|