Spaces:
Running
Running
vkovacs
commited on
Commit
·
4ee3727
1
Parent(s):
f47d5b8
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()
|