metric plot png fix y
This commit is contained in:
parent
8ff4f6931a
commit
0b9326578d
@ -49,7 +49,7 @@ try:
|
||||
plots = csv.reader(trainResults, delimiter = ',')
|
||||
for row in plots:
|
||||
x.append(row[0])
|
||||
y.append(row[1])
|
||||
y.append(float(row[1]))
|
||||
plt.bar(x, y, color = 'g', label = "loss")
|
||||
plt.xlabel('builds')
|
||||
plt.ylabel('losses')
|
||||
|
Loading…
Reference in New Issue
Block a user