diff --git a/RandomForest2.py b/RandomForest2.py index e0807a7462b1e6c4d174e582852589445b542acb..7983f59464f0176de9428fa80c08486aababbf05 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)