Spaces:
Sleeping
Sleeping
vkovacs commited on
Commit ·
95a86c7
1
Parent(s): 1bac0f8
wrap output texts
Browse files
app.py
CHANGED
|
@@ -86,7 +86,8 @@ with gr.Blocks() as demo:
|
|
| 86 |
with gr.Row():
|
| 87 |
result_table = gr.Dataframe(
|
| 88 |
headers=["Sentence", "Prediction", "Confidence"],
|
| 89 |
-
column_widths=["50%", "35%", "15%"]
|
|
|
|
| 90 |
)
|
| 91 |
with gr.Row():
|
| 92 |
model_info = gr.Markdown()
|
|
|
|
| 86 |
with gr.Row():
|
| 87 |
result_table = gr.Dataframe(
|
| 88 |
headers=["Sentence", "Prediction", "Confidence"],
|
| 89 |
+
column_widths=["50%", "35%", "15%"],
|
| 90 |
+
wrap=True # important
|
| 91 |
)
|
| 92 |
with gr.Row():
|
| 93 |
model_info = gr.Markdown()
|