From ac6112c184bdb61a483268b82f38b39a80d2f916 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 14 Nov 2019 13:14:47 -0800 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 2e3b3ac7..8f375b58 100755 --- a/utils/utils.py +++ b/utils/utils.py @@ -864,7 +864,7 @@ def plot_evolution_results(hyp): # from utils.utils import *; plot_evolution_re fig = plt.figure(figsize=(12, 10)) matplotlib.rc('font', **{'size': 8}) for i, (k, v) in enumerate(hyp.items()): - y = x[:, i + 5] + y = x[:, i + 7] # mu = (y * weights).sum() / weights.sum() # best weighted result mu = y[f.argmax()] # best single result plt.subplot(4, 5, i + 1)