From 844f143c10cd880ae27595fe70dae168cfe7cac6 Mon Sep 17 00:00:00 2001 From: ym1r22 <ym1r22@soton.ac.uk> Date: Wed, 7 Jun 2023 11:41:31 +0000 Subject: [PATCH] Update RandomForest1.py --- RandomForest1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RandomForest1.py b/RandomForest1.py index eada5f4..f919da2 100644 --- a/RandomForest1.py +++ b/RandomForest1.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("TestingResultsBinary.csv", index=False) # Calculate the confusion matrix confusion_mtx = confusion_matrix(y_test, y_test_pred) -- GitLab