├── .gitattributes ├── LICENSE ├── README.md ├── detr_layers ├── aifi.py ├── concat.py ├── conv.py ├── decoder.py ├── dwconv.py ├── hgblock.py ├── hgstem.py └── repc3.py ├── models ├── rtdetr_l.py └── rtdetr_x.py └── train.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /detr_layers/aifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/aifi.py -------------------------------------------------------------------------------- /detr_layers/concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/concat.py -------------------------------------------------------------------------------- /detr_layers/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/conv.py -------------------------------------------------------------------------------- /detr_layers/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/decoder.py -------------------------------------------------------------------------------- /detr_layers/dwconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/dwconv.py -------------------------------------------------------------------------------- /detr_layers/hgblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/hgblock.py -------------------------------------------------------------------------------- /detr_layers/hgstem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/hgstem.py -------------------------------------------------------------------------------- /detr_layers/repc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/detr_layers/repc3.py -------------------------------------------------------------------------------- /models/rtdetr_l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/models/rtdetr_l.py -------------------------------------------------------------------------------- /models/rtdetr_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/models/rtdetr_x.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranavdurai10/rtdetr-pytorch/HEAD/train.py --------------------------------------------------------------------------------