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
Nice work!
how do you align pruned output connected by residual connection? For example:
x=x+fo(MHA(x)) # fo is output project
x=x+fc2(fc1(x))
if you prune fc2 weight, you should prune fo in MHA as the same, or the dimension can not match.
Nice work!
how do you align pruned output connected by residual connection? For example:
x=x+fo(MHA(x)) # fo is output project
x=x+fc2(fc1(x))
if you prune fc2 weight, you should prune fo in MHA as the same, or the dimension can not match.