(self, x)
| 68 | self.relu2 = torch.nn.ReLU() |
| 69 | |
| 70 | def forward(self, x): |
| 71 | a = self.linear1(x) |
| 72 | a = self.relu1(a) |
| 73 | a = torch.sigmoid(a) |
| 74 | b = self.linear2(a) |
| 75 | b = self.relu2(b) |
| 76 | return b |
| 77 | |
| 78 | |
| 79 | class Model(torch.nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected