Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -182,10 +182,10 @@ demo = gr.Interface(
|
|
| 182 |
fn=analyze_text,
|
| 183 |
inputs=gr.Textbox(lines=10, label="Paste a speech, news article, or press release"),
|
| 184 |
outputs=[
|
| 185 |
-
gr.Textbox(label="Most Common Words"),
|
| 186 |
-
gr.Textbox(label="Sentiment"),
|
| 187 |
-
gr.Textbox(label="Entities (People / Orgs / Locations)"),
|
| 188 |
-
gr.Textbox(label="Status")
|
| 189 |
],
|
| 190 |
title="🗳️ Text & Speech Analyzer (spaCy + DeBERTa)",
|
| 191 |
description=(
|
|
@@ -194,4 +194,5 @@ demo = gr.Interface(
|
|
| 194 |
)
|
| 195 |
)
|
| 196 |
|
|
|
|
| 197 |
demo.launch()
|
|
|
|
| 182 |
fn=analyze_text,
|
| 183 |
inputs=gr.Textbox(lines=10, label="Paste a speech, news article, or press release"),
|
| 184 |
outputs=[
|
| 185 |
+
gr.Textbox(lines=12, label="Most Common Words"),
|
| 186 |
+
gr.Textbox(lines=12, label="Sentiment"),
|
| 187 |
+
gr.Textbox(lines=20, label="Entities (People / Orgs / Locations)"),
|
| 188 |
+
gr.Textbox(lines=3, label="Status")
|
| 189 |
],
|
| 190 |
title="🗳️ Text & Speech Analyzer (spaCy + DeBERTa)",
|
| 191 |
description=(
|
|
|
|
| 194 |
)
|
| 195 |
)
|
| 196 |
|
| 197 |
+
|
| 198 |
demo.launch()
|