buraktrk commited on
Commit
5aaf059
·
verified ·
1 Parent(s): 12754f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
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 (sayfalama olmadan)
229
  out_df = gr.Dataframe(
230
- wrap=True,
231
- show_label=False,
232
- row_count="fixed", # 🔥 Sayfalama çubuğu kalkar
233
- visible=True
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)