(self, x)
| 483 | self.sigmoid = nn.Sigmoid() |
| 484 | |
| 485 | def forward(self, x): |
| 486 | avg_out = self.fc2(self.relu1(self.fc1(self.avg_pool(x)))) |
| 487 | max_out = self.fc2(self.relu1(self.fc1(self.max_pool(x)))) |
| 488 | out = avg_out + max_out |
| 489 | return self.sigmoid(out) |
| 490 | |
| 491 | |
| 492 | class ODE(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected