simple-centernet-pytorch icon indicating copy to clipboard operation
simple-centernet-pytorch copied to clipboard

This is just a simple implementation of "CenterNet:Objects as Points"

Results 4 simple-centernet-pytorch issues
Sort by recently updated
recently updated
newest added

Hello, thank you very much for sharing this code base. I wonder if it would be possible for you to also add a license (like the MIT or Apache 2.0...

![image](https://user-images.githubusercontent.com/7441284/152484700-4e7e4cb4-8952-4066-91c1-3b897ea19a03.png) When I executed your inference.py, the result was the above. Do you think why?

Thank you for sharing this code base Would you be able to share a trained model for coco object detection

` self.laterals = nn.Sequential(*[Conv1x1(inplanes // (2 ** c), outplanes) for c in range(4)]) ` ==>> ` self.laterals = nn.Sequential(*[Conv1x1(inplanes // (2 ** c), outplanes) for c in reversed(range(4))]) `