From e932315c2dec5e813dbc968339add4de27b721a8 Mon Sep 17 00:00:00 2001 From: osuagwu Date: Tue, 17 Mar 2026 09:28:45 +0000 Subject: [PATCH] awesome featutur --- example_classifier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/example_classifier.py b/example_classifier.py index d60a014..bd18de5 100644 --- a/example_classifier.py +++ b/example_classifier.py @@ -37,6 +37,7 @@ accuracy = accuracy_score(y_test, y_pred); print(f"\nAccuracy: {accuracy:.2f}"); +print(f"\nThe model was trained on {X_train.shape[0]} samples and tested on {X_test.shape[0]} samples."); print(f"{X_test.shape[0]} samples were tested, and the model achieved an accuracy of {accuracy:.2f}.")