Update 'evaluate.py'
Some checks failed
s449288-evaluation/pipeline/head There was a failure building this commit
s449288-training/pipeline/head There was a failure building this commit

This commit is contained in:
Kacper Dudzic 2022-04-25 23:15:38 +02:00
parent 2a14dd107b
commit 0482fe10bc

View File

@ -20,7 +20,7 @@ test_results = model.evaluate(
# Zapis wartości liczbowej metryki do pliku
with open('eval_results.txt', 'a+') as f:
f.write(test_results)
f.write(str(test_results))
# Wygenerowanie i zapisanie do pliku wykresu
with open('eval_results.txt') as f: