From 7e36de3d17150f7e8bdcf8997683d54dc11289ee Mon Sep 17 00:00:00 2001 From: Sheaza Date: Tue, 14 May 2024 22:24:34 +0200 Subject: [PATCH] change file name --- predict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/predict.py b/predict.py index 65e559e..3ac3c8c 100644 --- a/predict.py +++ b/predict.py @@ -16,5 +16,5 @@ with open("predictions.txt", "w") as f: f.write(str(predictions)) accuracy = root_mean_squared_error(y_test, predictions) -with open("accuracy.txt", 'a') as file: +with open("rmse.txt", 'a') as file: file.write(str(accuracy))