(self, x)
| 69 | self.relu = nn.ReLU() |
| 70 | |
| 71 | def forward(self, x): |
| 72 | x = self.l1(x) |
| 73 | x = self.relu(x) |
| 74 | x = self.l2(x) |
| 75 | x = self.relu(x) |
| 76 | x = self.l3(x) |
| 77 | return x |
| 78 | |
| 79 | |
| 80 | class PAG(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected