|
import gradio as gr
|
|
import os
|
|
from convert_repo_to_safetensors_gr import convert_repo_to_safetensors_multi
|
|
os.environ['HF_OUTPUT_REPO'] = 'John6666/safetensors_converting_test'
|
|
|
|
css = """"""
|
|
|
|
with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", css=css) as demo:
|
|
gr.Markdown(
|
|
f"""
|
|
- [A CLI version of this tool is available here](https://huggingface.co/spaces/John6666/convert_repo_to_safetensors/tree/main/local).
|
|
""")
|
|
with gr.Column():
|
|
repo_id = gr.Textbox(label="Repo ID", placeholder="author/model", value="", lines=1)
|
|
is_half = gr.Checkbox(label="Half precision", value=True)
|
|
is_upload = gr.Checkbox(label="Upload safetensors to HF Repo", info="Fast download, but files will be public.", value=False)
|
|
uploaded_urls = gr.CheckboxGroup(visible=False, choices=[], value=None)
|
|
run_button = gr.Button(value="Convert")
|
|
st_file = gr.Files(label="Output", interactive=False)
|
|
st_md = gr.Markdown()
|
|
|
|
gr.on(
|
|
triggers=[repo_id.submit, run_button.click],
|
|
fn=convert_repo_to_safetensors_multi,
|
|
inputs=[repo_id, st_file, is_upload, uploaded_urls, is_half],
|
|
outputs=[st_file, uploaded_urls, st_md],
|
|
)
|
|
|
|
demo.queue()
|
|
demo.launch()
|
|
|