Update 'predict.py'

This commit is contained in:
Patryk Gałka 2023-05-10 23:16:36 +02:00
parent 6ece7b5423
commit 9afd1f405d

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.py', 'w') as file:
with open('metrics.txt', 'w') as file:
file.write(f'accurency: {accu}')
pre = reloaded.predict(x_to_test)