소스 검색

release YOLOv7AF-T

yjh0410 1 년 전
부모
커밋
e00dfaae73
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      yolo/config/yolov7_af_config.py
  2. 2 2
      yolo/models/yolov7_af/README.md

+ 1 - 1
yolo/config/yolov7_af_config.py

@@ -50,7 +50,7 @@ class Yolov7AFBaseConfig(object):
         self.val_conf_thresh = 0.001
         self.val_nms_thresh  = 0.7
         self.test_topk = 100
-        self.test_conf_thresh = 0.3
+        self.test_conf_thresh = 0.4
         self.test_nms_thresh  = 0.5
 
         # ---------------- Assignment config ----------------

+ 2 - 2
yolo/models/yolov7_af/README.md

@@ -4,13 +4,13 @@
 
 |     Model   | Batch | Scale | AP<sup>val<br>0.5 | Weight |  Logs  |
 |-------------|-------|-------|-------------------|--------|--------|
-| YOLOv7-AF-S | 1xb16 |  640  |       82.7        | [ckpt](https://github.com/yjh0410/YOLO-Tutorial-v7/releases/download/yolo_tutorial_ckpt/yolov7_af_s_voc.pth) | [log](https://github.com/yjh0410/YOLO-Tutorial-v7/releases/download/yolo_tutorial_ckpt/YOLOv7-AF-S-VOC.txt) |
+| YOLOv7-AF-T | 1xb16 |  640  |       80.6        | [ckpt](https://github.com/yjh0410/YOLO-Tutorial-v7/releases/download/yolo_tutorial_ckpt/yolov7_af_t_voc.pth) | [log](https://github.com/yjh0410/YOLO-Tutorial-v7/releases/download/yolo_tutorial_ckpt/YOLOv7-AF-T-VOC.txt) |
 
 - COCO
 
 |    Model    | Batch | Scale | AP<sup>val<br>0.5:0.95 | AP<sup>val<br>0.5 | FLOPs<br><sup>(G) | Params<br><sup>(M) | Weight |  Logs  |
 |-------------|-------|-------|------------------------|-------------------|-------------------|--------------------|--------|--------|
-| YOLOv7-AF-S | 1xb16 |  640  |                    |               |   26.9            |   8.9             |  |  |
+| YOLOv7-AF-T | 1xb16 |  640  |                    |               |   26.9            |   8.9             |  |  |
 
 - For training, we train redesigned YOLOv7-AF with 500 epochs on COCO. We also use the gradient accumulation.
 - For data augmentation, we use the RandomAffine, RandomHSV, Mosaic and YOLOX's Mixup augmentation.