lyuwenyu / RT-DETR

[CVPR 2024] Official RT-DETR (RTDETR paddle pytorch), Real-Time DEtection TRansformer, DETRs Beat YOLOs on Real-time Object Detection. 🔥 🔥 🔥
Apache License 2.0
2.61k stars 303 forks source link

RT-DETRv2 Configs #393

Closed lime-s closed 3 months ago

lime-s commented 3 months ago

非常感谢您更新RT-DETRv2,但是我有一些问题,在新的configs/rtdetrv2/xxx.yml中rtdetrv2_r18vd_120e_coco.yml 中的120e表示什么?1x/3x/6x/7x中的数字表示什么,是decoder的数量么

lyuwenyu commented 3 months ago

代表训练的epoch数;100以内用的x;

120e  -> 120epcoh
1x -> 1  * 12 epoch == 12 epoch 
3x -> 3 * 12 epoch == 36 epoch 
6x -> 6 * 12 epoch == 72 epoch 
7x -> 7 * 12 epoch == 84 epoch 
lime-s commented 3 months ago

好的,感谢