Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ class App:
|
|
97 |
translation_params = self.default_params["translation"]
|
98 |
nllb_params = translation_params["nllb"]
|
99 |
|
100 |
-
with gr.
|
101 |
with gr.Column(scale=2):
|
102 |
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", interactive=True)
|
103 |
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", interactive=True)
|
|
|
97 |
translation_params = self.default_params["translation"]
|
98 |
nllb_params = translation_params["nllb"]
|
99 |
|
100 |
+
with gr.Row():
|
101 |
with gr.Column(scale=2):
|
102 |
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", interactive=True)
|
103 |
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", interactive=True)
|