(self, x)
| 111 | self.act = nn.ReLU() |
| 112 | |
| 113 | def forward(self, x): |
| 114 | x = self.layer_norm(x) |
| 115 | x = self.linear(x) |
| 116 | x = self.act(x) |
| 117 | return x |
| 118 | |
| 119 | |
| 120 | class FunConvNetwork(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected