(self, x)
| 72 | self.drop = nn.Dropout(drop) |
| 73 | |
| 74 | def forward(self, x): |
| 75 | x = self.fc1(x) |
| 76 | x = self.act(x) |
| 77 | x = self.drop(x) |
| 78 | x = self.fc2(x) |
| 79 | x = self.drop(x) |
| 80 | return x |
| 81 | |
| 82 | |
| 83 |
nothing calls this directly
no outgoing calls
no test coverage detected