LAP-DEV commited on
Commit
e42b922
·
verified ·
1 Parent(s): 060bc0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -97,18 +97,18 @@ class App:
97
  dd_lang = gr.Dropdown(choices=["Automatic Detection"] + self.whisper_inf.available_langs,value=whisper_params["lang"], label="Language", info="If the language is known upfront, always set it manually")
98
  #dd_file_format = gr.Dropdown(choices=["SRT", "WebVTT", "txt"], value="SRT", label="File Format")
99
  dd_file_format = gr.Dropdown(choices=["SRT", "txt"], value="txt", label="Output format", visible=False)
 
 
 
 
 
 
100
 
101
  with gr.Row():
102
- cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Speaker diarization",interactive=True)
103
  cb_translate = gr.Checkbox(value=whisper_params["is_translate"], label="Translate to English",interactive=True)
104
  cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True)
105
 
106
  with gr.Accordion("Diarization options", open=False):
107
- tb_hf_token = gr.Text(label="HuggingFace Token", value=diarization_params["hf_token"],
108
- info="This is only needed the first time you download the model. If you already have"
109
- " models, you don't need to enter. To download the model, you must manually go "
110
- "to https://huggingface.co/pyannote/speaker-diarization-3.1 and agree to"
111
- " their requirement.")
112
  dd_diarization_device = gr.Dropdown(label="Device",
113
  choices=self.whisper_inf.diarizer.get_available_device(),
114
  value=self.whisper_inf.diarizer.get_device())
 
97
  dd_lang = gr.Dropdown(choices=["Automatic Detection"] + self.whisper_inf.available_langs,value=whisper_params["lang"], label="Language", info="If the language is known upfront, always set it manually")
98
  #dd_file_format = gr.Dropdown(choices=["SRT", "WebVTT", "txt"], value="SRT", label="File Format")
99
  dd_file_format = gr.Dropdown(choices=["SRT", "txt"], value="txt", label="Output format", visible=False)
100
+ cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Speaker diarization",interactive=True)
101
+ tb_hf_token = gr.Text(label="HuggingFace Token", value=diarization_params["hf_token"],
102
+ info="This is only needed the first time you download the model. If you already have"
103
+ " models, you don't need to enter. To download the model, you must manually go "
104
+ "to https://huggingface.co/pyannote/speaker-diarization-3.1 and agree to"
105
+ " their requirement.")
106
 
107
  with gr.Row():
 
108
  cb_translate = gr.Checkbox(value=whisper_params["is_translate"], label="Translate to English",interactive=True)
109
  cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True)
110
 
111
  with gr.Accordion("Diarization options", open=False):
 
 
 
 
 
112
  dd_diarization_device = gr.Dropdown(label="Device",
113
  choices=self.whisper_inf.diarizer.get_available_device(),
114
  value=self.whisper_inf.diarizer.get_device())