(self, x)
| 66 | self.resid_dropout = nn.Dropout(dropout_p) |
| 67 | |
| 68 | def forward(self, x): |
| 69 | return self.resid_dropout(self.w2(self.gelu(self.w1(x)))) |
| 70 | |
| 71 | def reset_parameters(self): |
| 72 | self.w1.reset_parameters() |
nothing calls this directly
no outgoing calls
no test coverage detected