-
Notifications
You must be signed in to change notification settings - Fork 31.8k
Closed
Labels
Description
System Info
| self.fc2 = nn.Linear(config.projector_output_dim, config.projector_output_dim, bias=False) |
Im pretty sure this should be:
self.fc2 = nn.Linear(config.projector_input_dim, config.projector_output_dim, bias=False)Who can help?
No response
Information
- The official example scripts
- My own modified scripts
Tasks
- An officially supported task in the
examplesfolder (such as GLUE/SQuAD, ...) - My own task or dataset (give details below)
Reproduction
Nothing to reproduce, I just noticed a shape mistake, but i havent had a chance to run it personally yet!
Expected behavior
The output of fc1 should be the input of fc2, unless there is some hidden logic that I am missing