theNeofr commited on
Commit
8518d8c
·
verified ·
1 Parent(s): 3a43f25

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -439,13 +439,12 @@ with gr.Blocks(
439
  amp_threshold = gr.Slider(minimum=0.1, maximum=1, step=0.1, value=0.6, label="Amplification threshold", info="The threshold for audio amplification.")
440
  with gr.Row():
441
  batch_size = gr.Slider(minimum=1, maximum=16, step=1, value=1, label="Batch Size", info="Larger consumes more RAM but may process slightly faster.")
442
- with gr.Tab("Credits"):
443
- gr.Markdown("""
444
- Politrees - gradio webui
445
- theNeodev - mod the ui
446
- nomadkaraoke - project own
447
-
448
- """)
449
 
450
 
451
  demucs_model.change(update_stems, inputs=[demucs_model], outputs=stem6)
@@ -543,7 +542,7 @@ with gr.Blocks(
543
  )
544
 
545
  def main():
546
- app.launch(share=True)
547
 
548
  if __name__ == "__main__":
549
  main()
 
439
  amp_threshold = gr.Slider(minimum=0.1, maximum=1, step=0.1, value=0.6, label="Amplification threshold", info="The threshold for audio amplification.")
440
  with gr.Row():
441
  batch_size = gr.Slider(minimum=1, maximum=16, step=1, value=1, label="Batch Size", info="Larger consumes more RAM but may process slightly faster.")
442
+ with gr.Tab("Credits"):
443
+ gr.Markdown("""
444
+ Politrees - gradio webui
445
+ theNeodev - mod the ui
446
+ nomadkaraoke - original project
447
+ """)
 
448
 
449
 
450
  demucs_model.change(update_stems, inputs=[demucs_model], outputs=stem6)
 
542
  )
543
 
544
  def main():
545
+ app.launch(share=True, debug=True)
546
 
547
  if __name__ == "__main__":
548
  main()