Forráskód Böngészése

modify post-process

yjh0410 1 éve
szülő
commit
fffc11d7d0
2 módosított fájl, 4 hozzáadás és 25 törlés
  1. 2 12
      README.md
  2. 2 13
      README_CN.md

+ 2 - 12
README.md

@@ -122,18 +122,8 @@ python test.py -d coco \
                --img_size 640 \
                --weight path/to/weight \
                --root path/to/dataset/ \
-               --show
-```
-
-For YOLOv7, since it uses the RepConv in PaFPN, you can add `--fuse_repconv` to fuse the RepConv block.
-```Shell
-python test.py -d coco \
-               --cuda \
-               -m yolov7_large \
-               --fuse_repconv \
-               --img_size 640 \
-               --weight path/to/weight \
-               --root path/to/dataset/ \
+               --no_multi_labels \
+               --visual_threshold 0.35 \
                --show
 ```
 

+ 2 - 13
README_CN.md

@@ -126,19 +126,8 @@ python test.py -d coco \
                --img_size 640 \
                --weight path/to/weight \
                --root path/to/dataset/ \
-               --show
-```
-
-对于YOLOv7,由于YOLOv7的PaFPN中包含了RepConv模块,因此你可以在测试命中加上`--fuse_repconv`来融合其中的RepConv:
-
-```Shell
-python test.py -d coco \
-               --cuda \
-               -v yolov7_large \
-               --fuse_repconv \
-               --img_size 640 \
-               --weight path/to/weight \
-               --root path/to/dataset/ \
+               --no_multi_labels \
+               --visual_threshold 0.35 \
                --show
 ```