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 code in Polarization Prompt Fusion Block (PPFB) is qkv = self.relu(self.qkv(torch.concat([prompt, x], dim=1).reshape(B, 2C, HW).permute(0, 2, 1)))
This means that the prompt and x have been concatenated, but in the paper, it's addition. Which one is correct?
The text was updated successfully, but these errors were encountered:
The code in Polarization Prompt Fusion Block (PPFB) is
qkv = self.relu(self.qkv(torch.concat([prompt, x], dim=1).reshape(B, 2C, HW).permute(0, 2, 1)))
This means that the prompt and x have been concatenated, but in the paper, it's addition. Which one is correct?
The text was updated successfully, but these errors were encountered: