From 5b6e11c6deb04f0a09ec8df12c56652d5b36ac2d Mon Sep 17 00:00:00 2001 From: ym1r22 <ym1r22@soton.ac.uk> Date: Wed, 7 Jun 2023 11:41:57 +0000 Subject: [PATCH] Update RandomForest2.py --- RandomForest2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RandomForest2.py b/RandomForest2.py index e0807a7..7983f59 100644 --- a/RandomForest2.py +++ b/RandomForest2.py @@ -52,7 +52,7 @@ print(y_pred) # Save the test predictions to a CSV file test_data["PredictedLabel"] = y_pred -test_data.to_csv("TestPrediction2.csv", index=False) +test_data.to_csv("TestingResultsMulti.csv", index=False) # Calculate the confusion matrix confusion_mtx = confusion_matrix(y_test, y_test_pred) -- GitLab