CultriX commited on
Commit
be4fc55
·
verified ·
1 Parent(s): b8253d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -192,8 +192,7 @@ if __name__ == "__main__":
192
  plotly_avg = gr.HTML(label="Plotly Average Performance Chart")
193
 
194
  with gr.Row():
195
- with gr.TabbedInterface([gr.HTML(value=f"", label=f"Plotly {task} Chart") for task in task_names], label="Task Charts"):
196
- pass
197
 
198
  input_text.change(
199
  fn=process_and_visualize,
 
192
  plotly_avg = gr.HTML(label="Plotly Average Performance Chart")
193
 
194
  with gr.Row():
195
+ task_tabs = gr.TabbedInterface([gr.HTML(value=f"Plotly {task} Chart") for task in task_names])
 
196
 
197
  input_text.change(
198
  fn=process_and_visualize,