From 764e49894d62a6d67c621f17a4b398c903da005c Mon Sep 17 00:00:00 2001 From: Serhii Yemets Date: Wed, 28 May 2025 21:51:05 +0000 Subject: [PATCH] Update train_ner.py --- train_ner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/train_ner.py b/train_ner.py index b13d8a2..18bb998 100644 --- a/train_ner.py +++ b/train_ner.py @@ -191,6 +191,6 @@ try: full_model_path = os.path.join(output_base, "full_model") merged_model.save_pretrained(full_model_path) tokenizer.save_pretrained(full_model_path) - print(f"✅ Full merged model saved to {full_model_path}") + print(f"Full merged model saved to {full_model_path}") except Exception as e: - print(f"❌ Failed to merge and save full model: {e}") + print(f"Failed to merge and save full model: {e}")