Update app.py
Browse files
app.py
CHANGED
@@ -92,7 +92,10 @@ class App:
|
|
92 |
diarization_params = self.default_params["diarization"]
|
93 |
vad_params = self.default_params["vad"]
|
94 |
uvr_params = self.default_params["bgm_separation"]
|
95 |
-
|
|
|
|
|
|
|
96 |
|
97 |
with gr.Row():
|
98 |
dd_model = gr.Dropdown(choices=self.whisper_inf.available_models, value=whisper_params["model_size"],label="Model", info="Larger models will increase the quality of the transcription, but reduce performance")
|
|
|
92 |
diarization_params = self.default_params["diarization"]
|
93 |
vad_params = self.default_params["vad"]
|
94 |
uvr_params = self.default_params["bgm_separation"]
|
95 |
+
|
96 |
+
#Translation integration
|
97 |
+
translation_params = self.default_params["translation"]
|
98 |
+
nllb_params = translation_params["nllb"]
|
99 |
|
100 |
with gr.Row():
|
101 |
dd_model = gr.Dropdown(choices=self.whisper_inf.available_models, value=whisper_params["model_size"],label="Model", info="Larger models will increase the quality of the transcription, but reduce performance")
|