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
In the line 66, it is supposed to be "nn.Linear(d_out, d_in)" instead of "nn.Linear(d_out, d_out)" since the linear attempts to project the dimension of the attention (d_out) back to the dimension of embedding "d_in". However, this code can work without any error report because the "d_out" is set equal to "d_in" by default.
The text was updated successfully, but these errors were encountered:
In the line 66, it is supposed to be "nn.Linear(d_out, d_in)" instead of "nn.Linear(d_out, d_out)" since the linear attempts to project the dimension of the attention (d_out) back to the dimension of embedding "d_in". However, this code can work without any error report because the "d_out" is set equal to "d_in" by default.
The text was updated successfully, but these errors were encountered: