Update app.py
Browse files
app.py
CHANGED
@@ -102,8 +102,8 @@ class App:
|
|
102 |
cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True, visible=True)
|
103 |
dd_file_format = gr.Dropdown(choices=["TXT","SRT"], value="TXT", label="Output format", visible=False, info="Output preview format")
|
104 |
|
105 |
-
with gr.Accordion("
|
106 |
-
cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="
|
107 |
tb_hf_token = gr.Text(label="Token", value=diarization_params["hf_token"])
|
108 |
gr.Markdown("""
|
109 |
An access token can be created [here](https://hf.co/settings/tokens). If not done yet for your account, you need to accept the terms & conditions of [diarization](https://huggingface.co/pyannote/speaker-diarization-3.1) and [segmentation](https://huggingface.co/pyannote/segmentation-3.0).
|
|
|
102 |
cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True, visible=True)
|
103 |
dd_file_format = gr.Dropdown(choices=["TXT","SRT"], value="TXT", label="Output format", visible=False, info="Output preview format")
|
104 |
|
105 |
+
with gr.Accordion("Speaker diarization", open=False, visible=True):
|
106 |
+
cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Use diarization",info="Requires a valid token",interactive=True)
|
107 |
tb_hf_token = gr.Text(label="Token", value=diarization_params["hf_token"])
|
108 |
gr.Markdown("""
|
109 |
An access token can be created [here](https://hf.co/settings/tokens). If not done yet for your account, you need to accept the terms & conditions of [diarization](https://huggingface.co/pyannote/speaker-diarization-3.1) and [segmentation](https://huggingface.co/pyannote/segmentation-3.0).
|