data_processor.py aktualisiert

This commit is contained in:
2025-08-04 13:39:11 +00:00
parent 7ad29e89ef
commit df24d79087

View File

@@ -5702,7 +5702,7 @@ class DataProcessor:
# bewerten)
self.logger.info(
"Starte Evaluation des besten Modells auf dem ungesehenen Testset...")
y_pred = best_classifier.predict(X_test_imputed) # << KORRIGIERT
y_pred = best_classifier.predict(X_test)
accuracy = accuracy_score(y_test, y_pred)
self.logger.info(
f"Finale Modell Genauigkeit auf dem Testset: {accuracy:.4f}")