YOLOX
|Model |size |mAP<sup>val<br>0.5:0.95 |mAP<sup>test<br>0.5:0.95 | Speed V100<br>(ms) | Params<br>(M) |FLOPs<br>(G)| weights |
| ------ |:---: | :---: | :---: |:---: |:---: | :---: | :----: |
|[YOLOX-s](./exps/default/yolox_s.py) |640 |40.5 |40.5 |9.8 |9.0 | 26.8 | [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_s.pth) |
|[YOLOX-m](./exps/default/yolox_m.py) |640 |46.9 |47.2 |12.3 |25.3 |73.8| [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_m.pth) |
|[YOLOX-l](./exps/default/yolox_l.py) |640 |49.7 |50.1 |14.5 |54.2| 155.6 | [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_l.pth) |
|[YOLOX-x](./exps/default/yolox_x.py) |640 |51.1 |**51.5** | 17.3 |99.1 |281.9 | [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_x.pth) |
|[YOLOX-Darknet53](./exps/default/yolov3.py) |640 | 47.7 | 48.0 | 11.1 |63.7 | 185.3 | [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_darknet.pth) |
|Model |size |mAP<sup>val<br>0.5:0.95 | Params<br>(M) |FLOPs<br>(G)| weights |
| ------ |:---: | :---: |:---: |:---: | :---: |
|[YOLOX-Nano](./exps/default/yolox_nano.py) |416 |25.8 | 0.91 |1.08 | [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_nano.pth) |
|[YOLOX-Tiny](./exps/default/yolox_tiny.py) |416 |32.8 | 5.06 |6.45 | [github](https://github.com/Megvii-BaseDetection/YOLOX/releases/download/0.1.1rc0/yolox_tiny.pth) |
What's Changed
* The base config of the torchyolo library has been improved. by kadirnar in https://github.com/kadirnar/torchyolo/pull/1
* Add the Yolov5 model. by kadirnar in https://github.com/kadirnar/torchyolo/pull/2
* Add show image by kadirnar in https://github.com/kadirnar/torchyolo/pull/3
* Added automodel module. by kadirnar in https://github.com/kadirnar/torchyolo/pull/4
* Added yolov7,yolov6 and yolox models. by kadirnar in https://github.com/kadirnar/torchyolo/pull/11
* The readme file has been updated. by kadirnar in https://github.com/kadirnar/torchyolo/pull/12
* Added pip support. by kadirnar in https://github.com/kadirnar/torchyolo/pull/13
* Added script for package update. by kadirnar in https://github.com/kadirnar/torchyolo/pull/14
* Updated the Yollov6 visualization module. by kadirnar in https://github.com/kadirnar/torchyolo/pull/19
* Updated the Yolox visualization module. by kadirnar in https://github.com/kadirnar/torchyolo/pull/21
New Contributors
* kadirnar made their first contribution in https://github.com/kadirnar/torchyolo/pull/1
**Full Changelog**: https://github.com/kadirnar/torchyolo/commits/v0.0.1