(self, lowfeat, highfeat)
| 342 | nn.ReLU(inplace=True)) |
| 343 | |
| 344 | def forward(self, lowfeat, highfeat): |
| 345 | return self.up(highfeat + self.conv(lowfeat)) |
| 346 | |
| 347 | def init_params(self): |
| 348 | for m in self.modules(): |
nothing calls this directly
no outgoing calls
no test coverage detected