theNeofr commited on
Commit
ad9fa56
·
verified ·
1 Parent(s): e351966

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -16
app.py CHANGED
@@ -616,13 +616,7 @@ with gr.Blocks(theme ="hev832/applio", title = "🎵 Audio Separator UI 🎵") a
616
  demucs_download_button.click(download_audio, [demucs_link], [demucs_audio])
617
 
618
 
619
- with gr.Row():
620
- demucs_bath_button = gr.Button("Separate!", variant = "primary")
621
- with gr.Row():
622
- demucs_info = gr.Textbox(
623
- label = "Output information",
624
- interactive = False
625
- )
626
 
627
 
628
  with gr.Row():
@@ -671,17 +665,24 @@ with gr.Blocks(theme ="hev832/applio", title = "🎵 Audio Separator UI 🎵") a
671
 
672
  demucs_button.click(demucs_separator, [demucs_audio, demucs_model, demucs_output_format, demucs_shifts, demucs_segment_size, demucs_segments_enabled, demucs_overlap, demucs_batch_size, demucs_normalization_threshold, demucs_amplification_threshold], [demucs_stem1, demucs_stem2, demucs_stem3, demucs_stem4, demucs_stem5, demucs_stem6])
673
 
 
 
 
 
 
 
 
 
674
 
675
  with gr.TabItem("Credits"):
676
  gr.Markdown(
677
  """
678
  audio separator UI created by **[Eddycrack 864] & [_noxty](https://huggingface.co/theNeofr).
679
  * python-audio-separator by [beveradb](https://github.com/beveradb).
680
- * Special thanks to [Ilaria](https://github.com/TheStingerX) for hosting this space and help.
681
  * Thanks to [Mikus](https://github.com/cappuch) for the help with the code.
682
  * Thanks to [Nick088](https://huggingface.co/Nick088) for the help to fix roformers.
683
  * Thanks to [yt_dlp](https://github.com/yt-dlp/yt-dlp) devs.
684
- * Separation by link source code and improvements by [Blane187](https://huggingface.co/Blane187).
685
  * Thanks to [ArisDev](https://github.com/aris-py) for porting UVR5 UI to Kaggle and improvements.
686
  * Thanks to [Bebra777228](https://github.com/Bebra777228)'s code for guiding me to improve my code.
687
 
@@ -691,12 +692,6 @@ with gr.Blocks(theme ="hev832/applio", title = "🎵 Audio Separator UI 🎵") a
691
  """
692
  )
693
 
694
- with gr.Tab("Leaderboard"):
695
- with gr.Row(equal_height=True):
696
- list_filter = gr.Dropdown(value="vocals", choices=["vocals", "instrumental", "drums", "bass", "guitar", "piano", "other"], label="List filter", info="Filter and sort the model list by 'stem'")
697
- list_limit = gr.Slider(minimum=1, maximum=10, step=1, value=5, label="List limit", info="Limit the number of models shown.")
698
- list_button = gr.Button("Show list", variant="primary")
699
- output_list = gr.HTML(label="Leaderboard")
700
-
701
  app.queue()
702
  app.launch(share=True, debug=True)
 
616
  demucs_download_button.click(download_audio, [demucs_link], [demucs_audio])
617
 
618
 
619
+
 
 
 
 
 
 
620
 
621
 
622
  with gr.Row():
 
665
 
666
  demucs_button.click(demucs_separator, [demucs_audio, demucs_model, demucs_output_format, demucs_shifts, demucs_segment_size, demucs_segments_enabled, demucs_overlap, demucs_batch_size, demucs_normalization_threshold, demucs_amplification_threshold], [demucs_stem1, demucs_stem2, demucs_stem3, demucs_stem4, demucs_stem5, demucs_stem6])
667
 
668
+
669
+ with gr.Tab("Leaderboard"):
670
+ with gr.Row(equal_height=True):
671
+ list_filter = gr.Dropdown(value="vocals", choices=["vocals", "instrumental", "drums", "bass", "guitar", "piano", "other"], label="List filter", info="Filter and sort the model list by 'stem'")
672
+ list_limit = gr.Slider(minimum=1, maximum=10, step=1, value=5, label="List limit", info="Limit the number of models shown.")
673
+ list_button = gr.Button("Show list", variant="primary")
674
+ output_list = gr.HTML(label="Leaderboard")
675
+
676
 
677
  with gr.TabItem("Credits"):
678
  gr.Markdown(
679
  """
680
  audio separator UI created by **[Eddycrack 864] & [_noxty](https://huggingface.co/theNeofr).
681
  * python-audio-separator by [beveradb](https://github.com/beveradb).
 
682
  * Thanks to [Mikus](https://github.com/cappuch) for the help with the code.
683
  * Thanks to [Nick088](https://huggingface.co/Nick088) for the help to fix roformers.
684
  * Thanks to [yt_dlp](https://github.com/yt-dlp/yt-dlp) devs.
685
+ * Separation by link source code and improvements by [_noxty](https://huggingface.co/theNeofr).
686
  * Thanks to [ArisDev](https://github.com/aris-py) for porting UVR5 UI to Kaggle and improvements.
687
  * Thanks to [Bebra777228](https://github.com/Bebra777228)'s code for guiding me to improve my code.
688
 
 
692
  """
693
  )
694
 
695
+
 
 
 
 
 
 
696
  app.queue()
697
  app.launch(share=True, debug=True)