This commit is contained in:
Glenn Jocher 2019-11-14 13:14:47 -08:00
parent 444a9f7099
commit ac6112c184
1 changed files with 1 additions and 1 deletions

View File

@ -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)