Spaces:
Runtime error
Runtime error
update field description
Browse files
app.py
CHANGED
@@ -169,7 +169,7 @@ if st.session_state['tokenizer_json'] is not None:
|
|
169 |
access_token_no_cache = st.text_input("HuggingFace Access Token API with Write Access", type="password", key="access_token_no_cache")
|
170 |
commit_message_text_input = st.text_input("Commit Message", key="commit_message_text_input")
|
171 |
to_private_checkbox = st.checkbox("To Private Repo", key="to_private_checkbox")
|
172 |
-
create_pr_checkbox = st.checkbox("Create PR (
|
173 |
push_to_hub_button = st.button("Push to Hub", key="push_to_hub_button", use_container_width=True)
|
174 |
st.session_state['tokenizer'].save_pretrained(st.session_state['tokenizer_json'])
|
175 |
with open(f"{st.session_state['tokenizer_json']}/tokenizer_config.json", "r") as f:
|
|
|
169 |
access_token_no_cache = st.text_input("HuggingFace Access Token API with Write Access", type="password", key="access_token_no_cache")
|
170 |
commit_message_text_input = st.text_input("Commit Message", key="commit_message_text_input")
|
171 |
to_private_checkbox = st.checkbox("To Private Repo", key="to_private_checkbox")
|
172 |
+
create_pr_checkbox = st.checkbox("Create PR (Check to contribute to others' model repository 🤗)", key="create_pr_checkbox")
|
173 |
push_to_hub_button = st.button("Push to Hub", key="push_to_hub_button", use_container_width=True)
|
174 |
st.session_state['tokenizer'].save_pretrained(st.session_state['tokenizer_json'])
|
175 |
with open(f"{st.session_state['tokenizer_json']}/tokenizer_config.json", "r") as f:
|