(self, x)
| 57 | self.drop = nn.Dropout(drop) |
| 58 | |
| 59 | def forward(self, x): |
| 60 | x = self.fc1(x) |
| 61 | x = self.act(x) |
| 62 | x = self.drop(x) |
| 63 | x = self.fc2(x) |
| 64 | x = self.drop(x) |
| 65 | return x |
| 66 | |
| 67 | |
| 68 | class Attention(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected