(self, x)
| 117 | self.init_params() |
| 118 | |
| 119 | def forward(self, x): |
| 120 | x = self.conv1(x) |
| 121 | x = x + self.conv_branch(x) |
| 122 | x = self.relu(x) |
| 123 | |
| 124 | return x |
| 125 | |
| 126 | def init_params(self): |
| 127 | for m in self.modules(): |
nothing calls this directly
no outgoing calls
no test coverage detected