(self, input)
| 25 | nn.Conv2d(self.output_channel[3], self.output_channel[3], 2, 1, 0), nn.ReLU(True)) # 512x1x24 |
| 26 | |
| 27 | def forward(self, input): |
| 28 | return self.ConvNet(input) |
| 29 | |
| 30 | |
| 31 | class RCNN_FeatureExtractor(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected