You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The formula (9) mentioned that in the decoding process, CAT() was used to link the feature maps from encoder, but in the code arch.py, out = torch.add(out,t3) pixel-level addition was used instead of CAT() opertaion, what's the difference between them and why using add instead of cat
The text was updated successfully, but these errors were encountered:
The formula (9) mentioned that in the decoding process, CAT() was used to link the feature maps from encoder, but in the code arch.py,
out = torch.add(out,t3)
pixel-level addition was used instead of CAT() opertaion, what's the difference between them and why using add instead of catThe text was updated successfully, but these errors were encountered: