Martin Rodrigo Morales commited on
Commit Β·
e73dd4a
1
Parent(s): b3fbeb1
Fix: Add missing UI components for plots and results
Browse files
app.py
CHANGED
|
@@ -204,6 +204,10 @@ with gr.Blocks(
|
|
| 204 |
|
| 205 |
with gr.Tabs():
|
| 206 |
with gr.TabItem("π Single Analysis"):
|
|
|
|
|
|
|
|
|
|
|
|
|
| 207 |
with gr.Row():
|
| 208 |
with gr.Column(scale=2):
|
| 209 |
single_input = gr.Textbox(
|
|
@@ -225,6 +229,10 @@ with gr.Blocks(
|
|
| 225 |
)
|
| 226 |
|
| 227 |
with gr.TabItem("π Batch Processing"):
|
|
|
|
|
|
|
|
|
|
|
|
|
| 228 |
with gr.Row():
|
| 229 |
with gr.Column(scale=2):
|
| 230 |
batch_input = gr.Textbox(
|
|
|
|
| 204 |
|
| 205 |
with gr.Tabs():
|
| 206 |
with gr.TabItem("π Single Analysis"):
|
| 207 |
+
gr.Markdown("""
|
| 208 |
+
Analyze individual texts to get sentiment predictions with confidence scores.
|
| 209 |
+
""")
|
| 210 |
+
|
| 211 |
with gr.Row():
|
| 212 |
with gr.Column(scale=2):
|
| 213 |
single_input = gr.Textbox(
|
|
|
|
| 229 |
)
|
| 230 |
|
| 231 |
with gr.TabItem("π Batch Processing"):
|
| 232 |
+
gr.Markdown("""
|
| 233 |
+
Process multiple texts at once. Enter one text per line.
|
| 234 |
+
""")
|
| 235 |
+
|
| 236 |
with gr.Row():
|
| 237 |
with gr.Column(scale=2):
|
| 238 |
batch_input = gr.Textbox(
|