Update app.py
Browse files
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=
|
| 90 |
gr.Markdown("## 🗨️📈Public Sentiment Analytics")
|
| 91 |
sentiment_metrics_output = gr.JSON(label="Sentiment Metrics")
|
| 92 |
-
with gr.Column(scale=
|
| 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 |
|