(self, x)
| 286 | self.res_block = nn.Sequential(conv_unit, *res_units) |
| 287 | |
| 288 | def forward(self, x): |
| 289 | out = x |
| 290 | for unit in self.res_block: |
| 291 | out = unit(out) |
| 292 | return out |
| 293 | |
| 294 | def inference(self, x): |
| 295 | for unit in self.res_block: |
nothing calls this directly
no outgoing calls
no test coverage detected