Update app.py
Browse files
app.py
CHANGED
@@ -314,7 +314,7 @@ class App:
|
|
314 |
with gr.Row():
|
315 |
with gr.Column(scale=4):
|
316 |
tb_indicator = gr.Textbox(label="Output preview", scale=1, show_copy_button=True, show_label=True)
|
317 |
-
gr.Markdown(MARKDOWN_NOTE, elem_id="
|
318 |
with gr.Column(scale=1):
|
319 |
tb_info = gr.Textbox(label="Output info", interactive=False, scale=1)
|
320 |
files_subtitles = gr.Files(label="Output data", interactive=False, scale=1,file_count="multiple")
|
@@ -327,10 +327,8 @@ class App:
|
|
327 |
# btn_openfolder.click(fn=lambda: self.open_folder("outputs"), inputs=None, outputs=None)
|
328 |
|
329 |
with gr.TabItem("Device info"): # tab2
|
330 |
-
|
331 |
-
|
332 |
-
with gr.Column():
|
333 |
-
gr.Markdown(device_info, label="Hardware info & installed packages")
|
334 |
|
335 |
# Launch the app with optional gradio settings
|
336 |
args = self.args
|
|
|
314 |
with gr.Row():
|
315 |
with gr.Column(scale=4):
|
316 |
tb_indicator = gr.Textbox(label="Output preview", scale=1, show_copy_button=True, show_label=True)
|
317 |
+
gr.Markdown(MARKDOWN_NOTE, elem_id="md_note")
|
318 |
with gr.Column(scale=1):
|
319 |
tb_info = gr.Textbox(label="Output info", interactive=False, scale=1)
|
320 |
files_subtitles = gr.Files(label="Output data", interactive=False, scale=1,file_count="multiple")
|
|
|
327 |
# btn_openfolder.click(fn=lambda: self.open_folder("outputs"), inputs=None, outputs=None)
|
328 |
|
329 |
with gr.TabItem("Device info"): # tab2
|
330 |
+
with gr.Column():
|
331 |
+
gr.Markdown(device_info, label="Hardware info & installed packages")
|
|
|
|
|
332 |
|
333 |
# Launch the app with optional gradio settings
|
334 |
args = self.args
|