Bakalar_work_final/upload_model.py

15 lines
456 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from huggingface_hub import create_repo, upload_folder
repo_id = "sergeyzt50/slovak-ner-full" # або твоя назва
# Створити репозиторій (тільки якщо ще не існує)
create_repo(repo_id, private=False)
# Залити всю модель
upload_folder(
repo_id=repo_id,
folder_path="./ner_ner_model/full_model",
path_in_repo="",
commit_message="🚀 Upload full SlovakBERT + LoRA NER model"
)