Blane187 commited on
Commit
90a4866
1 Parent(s): 49c540f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -36,7 +36,9 @@ with gr.Blocks() as demo:
36
  with gr.Accordion(" download A pth file"):
37
  with gr.Row():
38
  gr.Markdown(" get pth file from huggingface, example `https://huggingface.co/sail-rvc/hitzeed-ch/blob/main/model.pth` ")
 
39
  url = gr.Textbox(label=" url pth")
 
40
  dowoad_but = gr.Button("download")
41
  dowoad_but.click(download_pth, inputs=[url], outputs=[model_path])
42
 
 
36
  with gr.Accordion(" download A pth file"):
37
  with gr.Row():
38
  gr.Markdown(" get pth file from huggingface, example `https://huggingface.co/sail-rvc/hitzeed-ch/blob/main/model.pth` ")
39
+ with gr.Row():
40
  url = gr.Textbox(label=" url pth")
41
+ with gr.Row():
42
  dowoad_but = gr.Button("download")
43
  dowoad_but.click(download_pth, inputs=[url], outputs=[model_path])
44