From fad618b82107ec9ac47b5481681aff7a06339799 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 18 Apr 2019 23:05:19 +0200 Subject: [PATCH] updates --- test.py | 4 ++-- {utils => weights}/gcp.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {utils => weights}/gcp.sh (100%) diff --git a/test.py b/test.py index 03785953..3e058036 100644 --- a/test.py +++ b/test.py @@ -176,8 +176,8 @@ if __name__ == '__main__': parser = argparse.ArgumentParser(prog='test.py') parser.add_argument('--batch-size', type=int, default=32, help='size of each image batch') parser.add_argument('--cfg', type=str, default='cfg/yolov3-spp.cfg', help='cfg file path') - parser.add_argument('--data-cfg', type=str, default='data/coco_100img.data', help='coco.data file path') - parser.add_argument('--weights', type=str, default='weights/recall_issue.pt', help='path to weights file') + parser.add_argument('--data-cfg', type=str, default='data/coco.data', help='coco.data file path') + parser.add_argument('--weights', type=str, default='weights/yolov3-spp.weights', help='path to weights file') parser.add_argument('--iou-thres', type=float, default=0.5, help='iou threshold required to qualify as detected') parser.add_argument('--conf-thres', type=float, default=0.001, help='object confidence threshold') parser.add_argument('--nms-thres', type=float, default=0.5, help='iou threshold for non-maximum suppression') diff --git a/utils/gcp.sh b/weights/gcp.sh similarity index 100% rename from utils/gcp.sh rename to weights/gcp.sh