-
Notifications
You must be signed in to change notification settings - Fork 21.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Official YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors #2557
Comments
I tried to train a custom dataset with yolov7-tiny and conv.87 |
Are you going to launch the full yolov7.weights and yolov7.cfg? Or are there any option to convert it from .pt? |
Good Morning, Attached are the yolov4/v7 configuration files and sample images |
@AlexeyAB @ESJavadex @jhony2507 I would also like to know what how do I get the weights file for yolov7? Can I convert How do I train I guess we can convert |
I have the yolov7-w6 weights file in darknet format best.weights, Is there any way to convert it in pt. Also, is there a yolov7-W6 config file available (yolov7-w6.cfg) |
Official YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors
paper: https://arxiv.org/abs/2207.02696
source code - Pytorch (use to reproduce results): https://github.com/WongKinYiu/yolov7
Darknet cfg/weights file - currently tested for inference only:
Test FPS on: https://github.com/AlexeyAB/darknet
without NMS:
darknet.exe detector demo cfg/coco.data yolov7-tiny.cfg yolov7-tiny.weights test.mp4 -benchmark
with NMS:
darknet.exe detector demo cfg/coco.data yolov7-tiny.cfg yolov7-tiny.weights test.mp4 -dont_show
YOLOv7 is more accurate and faster than YOLOv5 by 120% FPS, than YOLOX by 180% FPS, than Dual-Swin-T by 1200% FPS, than ConvNext by 550% FPS, than SWIN-L by 500% FPS, than PPYOLOE-X by 150% FPS.
YOLOv7 surpasses all known object detectors in both speed and accuracy in the range from 5 FPS to 160 FPS and has the highest accuracy 56.8% AP among all known real-time object detectors with 30 FPS or higher on GPU V100, batch=1.
+500%
FPS faster than SWIN-L C-M-RCNN (53.9% AP, 9.2 FPS A100 b=1)+550%
FPS faster than ConvNeXt-XL C-M-RCNN (55.2% AP, 8.6 FPS A100 b=1)+120%
FPS faster than YOLOv5-X6-r6.1 (55.0% AP, 38 FPS V100 b=1)+1200%
FPS faster than Dual-Swin-T C-M-RCNN (53.6% AP, 6.5 FPS V100 b=1)+150%
FPS faster than PPYOLOE-X (51.9% AP, 45 FPS V100 b=1)+180%
FPS faster than YOLOX-X (51.1% AP, 58 FPS V100 b=1)The text was updated successfully, but these errors were encountered: