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}")