(self, x)
| 77 | self.drop = nn.Dropout(drop) |
| 78 | |
| 79 | def forward(self, x): |
| 80 | x = self.fc1(x) |
| 81 | x = self.act(x) |
| 82 | x = self.drop(x) |
| 83 | x = self.fc2(x) |
| 84 | x = self.drop(x) |
| 85 | return x |
| 86 | |
| 87 | |
| 88 | class Attention(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected