Fix chart generation
Some checks failed
s434704-training/pipeline/head This commit looks good
s434704-evaluation/pipeline/head There was a failure building this commit

This commit is contained in:
Wojciech Jarmosz 2021-05-15 01:42:32 +02:00
parent b32605abe9
commit 1490549284
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ y = []
if os.path.exists('bulk_metrics.txt'):
with open('bulk_metrics.txt') as file:
for line in file.readlines():
print(line.split(" "))
single_x, single_y = line.split(" ")
x.append(single_x)
y.append(single_y)

View File

@ -14,4 +14,4 @@ if os.path.exists("rmse.txt"):
result = line
with open("bulk_metrics.txt", "a") as file:
file.write(build_no + " " + result + "\n")
file.write(build_no + " " + result)