From 0bf08a9d93c4f58650f22e3b7d482f24808f5633 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 12 Sep 2019 15:02:59 +0200 Subject: [PATCH] updates --- utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.py b/utils/utils.py index 9f3a5903..5a892150 100755 --- a/utils/utils.py +++ b/utils/utils.py @@ -695,7 +695,7 @@ def print_mutation(hyp, results, bucket=''): def fitness(x): # Returns fitness (for use with results.txt or evolve.txt) - return x[:, 2] * 0.7 + x[:, 3] * 0.3 # weighted mAP and F1 combination + return x[:, 2] * 0.8 + x[:, 3] * 0.2 # weighted mAP and F1 combination # Plotting functions ---------------------------------------------------------------------------------------------------