From a2071e158509cc0120a039638e33af86858eefe5 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Fri, 09 Feb 2018 22:48:38 +0000
Subject: [PATCH] Parameter (max) in the cfg-file has an effect on the Yolo-training

---
 src/darknet.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/darknet.c b/src/darknet.c
index 776778a..627b6db 100644
--- a/src/darknet.c
+++ b/src/darknet.c
@@ -381,7 +381,7 @@
     } else if (0 == strcmp(argv[1], "detector")){
         run_detector(argc, argv);
     } else if (0 == strcmp(argv[1], "detect")){
-        float thresh = find_float_arg(argc, argv, "-thresh", .25);
+        float thresh = find_float_arg(argc, argv, "-thresh", .24);
         char *filename = (argc > 4) ? argv[4]: 0;
         test_detector("cfg/coco.data", argv[2], argv[3], filename, thresh);
     } else if (0 == strcmp(argv[1], "cifar")){

--
Gitblit v1.10.0