From 8cb9623afdcbc27c4f6606f00ea73997eae774fa Mon Sep 17 00:00:00 2001 From: Floke Date: Fri, 18 Jul 2025 09:36:12 +0000 Subject: [PATCH] brancheneinstufung2.py aktualisiert --- brancheneinstufung2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/brancheneinstufung2.py b/brancheneinstufung2.py index b8165f5e..1ff9e3d5 100644 --- a/brancheneinstufung2.py +++ b/brancheneinstufung2.py @@ -161,7 +161,9 @@ def main(): alignment_demo(sheet_handler) elif selected_mode == "train_technician_model": data_processor.train_technician_model() - + # NEU: Expliziter Aufruf für wiki_verify hinzugefügt + elif selected_mode == "wiki_verify": + data_processor.process_wiki_verify(limit=args.limit, start_sheet_row=args.start_sheet_row, end_sheet_row=args.end_sheet_row) elif hasattr(data_processor, f"process_{selected_mode}"): # Dynamischer Aufruf für die meisten Batch-Modi method_to_call = getattr(data_processor, f"process_{selected_mode}")