sdbrgo commited on
Commit
6f26c8c
·
verified ·
1 Parent(s): 8c59300

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -85,11 +85,11 @@ with gr.Blocks() as demo:
85
  btn = gr.Button("Run Evaluation")
86
 
87
  # ----- OUTPUTS -----
88
- with gr.Row()
89
- with gr.Column(scale=1):
90
  gr.Markdown("## 🗨️📈Public Sentiment Analytics")
91
  sentiment_metrics_output = gr.JSON(label="Sentiment Metrics")
92
- with gr.Column(scale=2):
93
  gr.Markdown("## 📃🩺Program Diagnosis")
94
  typology_output = gr.JSON(label="Typology Assignment")
95
 
 
85
  btn = gr.Button("Run Evaluation")
86
 
87
  # ----- OUTPUTS -----
88
+ with gr.Row():
89
+ with gr.Column(scale=4):
90
  gr.Markdown("## 🗨️📈Public Sentiment Analytics")
91
  sentiment_metrics_output = gr.JSON(label="Sentiment Metrics")
92
+ with gr.Column(scale=3):
93
  gr.Markdown("## 📃🩺Program Diagnosis")
94
  typology_output = gr.JSON(label="Typology Assignment")
95