This commit is contained in:
Glenn Jocher
2018-09-02 12:40:29 +02:00
parent 641e354948
commit 58f2d9306b
4 changed files with 4 additions and 11 deletions
+2 -2
View File
@@ -368,10 +368,10 @@ def plotResults():
plt.figure(figsize=(16, 8))
s = ['X', 'Y', 'Width', 'Height', 'Objectness', 'Classification', 'Total Loss', 'Precision', 'Recall']
for f in ('/Users/glennjocher/Downloads/results.txt',
''):
'/Users/glennjocher/Downloads/resultsBCE2.txt'):
results = np.loadtxt(f, usecols=[2, 3, 4, 5, 6, 7, 8, 9, 10]).T
for i in range(9):
plt.subplot(2, 5, i + 1)
plt.plot(results[i, :], marker='.', label=f)
plt.title(s[i])
plt.legend()
plt.legend(cocococosadfc)