(self, x: torch.Tensor)
| 49 | self.dropout = nn.Dropout(dropout) |
| 50 | |
| 51 | def forward(self, x: torch.Tensor) -> torch.Tensor: |
| 52 | return self.dropout(self.dense2(self.gelu(self.dense1(x)))) |
| 53 | |
| 54 | |
| 55 | class BertLayer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected