Update 'predict.py'

This commit is contained in:
Patryk Gałka 2023-05-10 23:45:06 +02:00
parent 770dd28c57
commit 8e2c2cce9b

View File

@ -14,7 +14,7 @@ y_to_test = pandas.read_csv('./Y_test.csv')
accu = reloaded.evaluate(x_to_test, y_to_test)
with open('metrics.txt', 'w') as file:
with open('metrics.txt', 'a') as file:
file.write(f'Accuracy: {accu}')
pre = reloaded.predict(x_to_test)