Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,11 +15,12 @@ st.write("castorini/afriberta-corpusを使って、ユーザーが入力した
|
|
15 |
model_name = st.text_input("トレーニングするモデル名 (例: Qwen/Qwen2.5-1.5B-Instruct)")
|
16 |
dataset_name = "castorini/afriberta-corpus"
|
17 |
hf_token = st.text_input("Hugging Face Write トークン", type="password")
|
|
|
18 |
output_dir = "./finetuned_model"
|
19 |
|
20 |
if st.button("トレーニング開始"):
|
21 |
-
if not model_name or not hf_token:
|
22 |
-
st.warning("
|
23 |
else:
|
24 |
# トークンの設定
|
25 |
HfFolder.save_token(hf_token)
|
@@ -68,7 +69,6 @@ if st.button("トレーニング開始"):
|
|
68 |
trainer.save_model(output_dir)
|
69 |
|
70 |
# Hugging Face Hub にデプロイ
|
71 |
-
repo_name = model_name.split('/')[-1] + "-finetuned"
|
72 |
api = HfApi()
|
73 |
api.create_repo(repo_name, token=hf_token)
|
74 |
repo = Repository(local_dir=output_dir, clone_from=repo_name, use_auth_token=hf_token)
|
|
|
15 |
model_name = st.text_input("トレーニングするモデル名 (例: Qwen/Qwen2.5-1.5B-Instruct)")
|
16 |
dataset_name = "castorini/afriberta-corpus"
|
17 |
hf_token = st.text_input("Hugging Face Write トークン", type="password")
|
18 |
+
repo_name = st.text_input("Hugging Faceリポジトリ名") # ユーザーが入力できるリポジトリ名
|
19 |
output_dir = "./finetuned_model"
|
20 |
|
21 |
if st.button("トレーニング開始"):
|
22 |
+
if not model_name or not hf_token or not repo_name:
|
23 |
+
st.warning("モデル名、トークン、リポジトリ名を入力してください")
|
24 |
else:
|
25 |
# トークンの設定
|
26 |
HfFolder.save_token(hf_token)
|
|
|
69 |
trainer.save_model(output_dir)
|
70 |
|
71 |
# Hugging Face Hub にデプロイ
|
|
|
72 |
api = HfApi()
|
73 |
api.create_repo(repo_name, token=hf_token)
|
74 |
repo = Repository(local_dir=output_dir, clone_from=repo_name, use_auth_token=hf_token)
|