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
Hello,Is the extra frame from the decoder just get the average of the adjacent features from the encoder?
if i % 2 == 0:
y[:, i, :, :, :] = x[:, i//2]
else:
y[:, i, :, :, :] = (x[:, i//2] + x[:, i//2 + 1]) / 2
The text was updated successfully, but these errors were encountered:
Is the extra frame from the decoder just get the average of the adjacent
features from the encoder?
if i % 2 == 0:
y[:, i, :, :, :] = x[:, i//2]
else:
y[:, i, :, :, :] = (x[:, i//2] + x[:, i//2 + 1]) / 2
—
Reply to this email directly, view it on GitHub
<#12>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHUDC3IBHWGWKUUS3PRY4LWZX6BTANCNFSM6AAAAAAVKXW42E>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
Hello,Is the extra frame from the decoder just get the average of the adjacent features from the encoder?
if i % 2 == 0:
y[:, i, :, :, :] = x[:, i//2]
else:
y[:, i, :, :, :] = (x[:, i//2] + x[:, i//2 + 1]) / 2
The text was updated successfully, but these errors were encountered: