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
You are wrong. The Eq. 7 refers to the PA module as attention, that is not used in the code. Instead the PA as motion cue is adopted in PA_modules.py
for i in range(self.n_length-1):
d_i = nn.PairwiseDistance(p=2)(x[:,i,:,:], x[:,i+1,:,:]).unsqueeze(1)
d = d_i if i == 0 else torch.cat((d, d_i), 1)
PA = d.view(-1, 1*(self.n_length-1), h, w)
The code refers to Eq.10 where PA is mixed with RGB - see Fig. 3C
Thank you for your great work! I am really interested with your work!
The Lite modality is computed as the equation(7)
,but the code released is not fit the equation(7).
So could you release the code about equation(7).
The text was updated successfully, but these errors were encountered: