(self, input)
| 59 | self.ConvNet = ResNet(input_channel, output_channel, BasicBlock, [1, 2, 5, 3]) |
| 60 | |
| 61 | def forward(self, input): |
| 62 | return self.ConvNet(input) |
| 63 | |
| 64 | |
| 65 | # For Gated RCNN |
nothing calls this directly
no outgoing calls
no test coverage detected