Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -225,13 +225,12 @@ with gr.Blocks(theme=gr.themes.Default(primary_hue="blue")) as demo:
|
|
| 225 |
cache_examples=False,
|
| 226 |
)
|
| 227 |
|
| 228 |
-
# 3️ Sonuçlar tablosu
|
| 229 |
out_df = gr.Dataframe(
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
)
|
| 235 |
|
| 236 |
# 4️ Tahmin fonksiyonu bağla
|
| 237 |
btn.click(predict_opinion, inputs=file_in, outputs=out_df)
|
|
|
|
| 225 |
cache_examples=False,
|
| 226 |
)
|
| 227 |
|
| 228 |
+
# 3️ Sonuçlar tablosu
|
| 229 |
out_df = gr.Dataframe(
|
| 230 |
+
wrap=True,
|
| 231 |
+
show_label=False,
|
| 232 |
+
max_rows=None,
|
| 233 |
+
visible=True)
|
|
|
|
| 234 |
|
| 235 |
# 4️ Tahmin fonksiyonu bağla
|
| 236 |
btn.click(predict_opinion, inputs=file_in, outputs=out_df)
|