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