[深度学习][预训练模型]darknet-yolov7预训练模型下载地址

转载自:https://www.pudn.com/news/631d4f50f0cde61357409e8f.html

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_ros: https://github.com/Ar-Ray-code/darknet_ros_fp16


YOLOv7:

  • cfg: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov7.cfg
  • weights: https://github.com/AlexeyAB/darknet/releases/download/yolov4/yolov7.weights
  • weights for fine-tuning: https://github.com/AlexeyAB/darknet/releases/download/yolov4/yolov7.conv.132

YOLOv7x:

  • cfg: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov7x.cfg
  • weights: https://github.com/AlexeyAB/darknet/releases/download/yolov4/yolov7x.weights
  • weights for fine-tuning: https://github.com/AlexeyAB/darknet/releases/download/yolov4/yolov7x.conv.147

YOLOv7-tiny-leaky-relu:

Darknet cfg/weights file - currently tested for inference only:

  • cfg: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov7-tiny.cfg
  • weights: https://github.com/AlexeyAB/darknet/releases/download/yolov4/yolov7-tiny.weights
  • weights for fine-tuning: https://github.com/AlexeyAB/darknet/releases/download/yolov4/yolov7-tiny.conv.87

Test FPS:

  • without NMSdarknet.exe detector demo cfg/coco.data cfg/yolov7-tiny.cfg yolov7-tiny.weights test.mp4 -benchmark

  • with NMSdarknet.exe detector demo cfg/coco.data cfg/yolov7-tiny.cfg yolov7-tiny.weights test.mp4 -dont_show

你可能感兴趣的:(深度学习,深度学习,人工智能,神经网络)