(self, x)
| 30 | self.channels.append(layer.out_channels) |
| 31 | |
| 32 | def forward(self, x): |
| 33 | fmaps = [] |
| 34 | for layer in self.layers: |
| 35 | x = layer(x) |
| 36 | if isinstance(layer, nn.ReLU): |
| 37 | fmaps.append(x) |
| 38 | return fmaps |
| 39 | |
| 40 | |
| 41 | class Conv1x1(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected