52Hz commited on
Commit
b97e969
1 Parent(s): 620cbcf

Update model/CMFNet.py

Browse files
Files changed (1) hide show
  1. 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 [x_final + mixed_img, mixed_img, mix_r[1], x1_img, x2_img, x3_img, x_final]
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