Fixes
Some checks failed
s434704-evaluation/pipeline/head There was a failure building this commit

This commit is contained in:
Wojciech Jarmosz 2021-05-15 01:06:38 +02:00
parent f1c736ab47
commit 48fc3361df
2 changed files with 2 additions and 2 deletions

View File

@ -22,4 +22,4 @@ scores = model.evaluate(x=test_X,
with open('rmse.txt', 'w') as file:
for idx, score in enumerate(scores):
file.write(str(score))
file.write(str(score) + "\n")

View File

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