LAP-DEV commited on
Commit
15d478e
·
verified ·
1 Parent(s): c7606bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -122,7 +122,7 @@ class App:
122
  value=self.whisper_inf.diarizer.get_device(),
123
  interactive=True, visible=False)
124
 
125
- with gr.Accordion("Voice Detection Filter", open=False, visible=True):
126
  cb_vad_filter = gr.Checkbox(label="Enable Silero VAD Filter", value=vad_params["vad_filter"],
127
  interactive=True,
128
  info="Enable to transcribe only detected voice parts")
@@ -143,9 +143,9 @@ class App:
143
  info="Final speech chunks are padded by this time each side")
144
 
145
 
146
- with gr.Accordion("Background Music Remover Filter", open=False):
147
  cb_bgm_separation = gr.Checkbox(label="Enable Background Music Remover Filter", value=uvr_params["is_separate_bgm"],
148
- info="Enabling this will remove background music by submodel before transcribing",
149
  interactive=True)
150
  dd_uvr_device = gr.Dropdown(label="Device",
151
  value=self.whisper_inf.music_separator.device,
 
122
  value=self.whisper_inf.diarizer.get_device(),
123
  interactive=True, visible=False)
124
 
125
+ with gr.Accordion("Voice Detection Filter (⚠ Experimental)", open=False, visible=True):
126
  cb_vad_filter = gr.Checkbox(label="Enable Silero VAD Filter", value=vad_params["vad_filter"],
127
  interactive=True,
128
  info="Enable to transcribe only detected voice parts")
 
143
  info="Final speech chunks are padded by this time each side")
144
 
145
 
146
+ with gr.Accordion("Background Music Remover Filter (⚠ Experimental)", open=False):
147
  cb_bgm_separation = gr.Checkbox(label="Enable Background Music Remover Filter", value=uvr_params["is_separate_bgm"],
148
+ info="Enable to remove background music by submodel before transcribing",
149
  interactive=True)
150
  dd_uvr_device = gr.Dropdown(label="Device",
151
  value=self.whisper_inf.music_separator.device,