Update app.py
Browse files
app.py
CHANGED
@@ -110,9 +110,9 @@ class App:
|
|
110 |
with gr.Row():
|
111 |
cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True)
|
112 |
with gr.Row():
|
113 |
-
cb_translate = gr.Checkbox(value=whisper_params["is_translate"], label="Translate transcription to English", info="Translate using OpenAI Whisper's built-in module
|
114 |
with gr.Row():
|
115 |
-
cb_translate_output = gr.Checkbox(value=translation_params["translate_output"], label="Translate output to selected language", info="Translate using Facebook's NLLB
|
116 |
|
117 |
# with gr.Accordion("Speaker diarization", open=False, visible=True):
|
118 |
# cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Use diarization",interactive=True)
|
|
|
110 |
with gr.Row():
|
111 |
cb_timestamp = gr.Checkbox(value=whisper_params["add_timestamp"], label="Add timestamp to output file",interactive=True)
|
112 |
with gr.Row():
|
113 |
+
cb_translate = gr.Checkbox(value=whisper_params["is_translate"], label="Translate transcription to English", info="Translate using OpenAI Whisper's built-in module",interactive=True)
|
114 |
with gr.Row():
|
115 |
+
cb_translate_output = gr.Checkbox(value=translation_params["translate_output"], label="Translate output to selected language", info="Translate using Facebook's NLLB",interactive=True)
|
116 |
|
117 |
# with gr.Accordion("Speaker diarization", open=False, visible=True):
|
118 |
# cb_diarize = gr.Checkbox(value=diarization_params["is_diarize"], label="Use diarization",interactive=True)
|