Commit Β·
1029010
1
Parent(s): 38a8db4
Fix Gradio Dataframe parameter - remove unsupported max_rows
Browse files
app.py
CHANGED
|
@@ -240,7 +240,7 @@ with gr.Blocks(title="PromptPrepML", theme=gr.themes.Soft()) as demo:
|
|
| 240 |
status_output = gr.Textbox(label="π Status", interactive=False)
|
| 241 |
|
| 242 |
gr.Markdown("## π Preview of Processed Dataset")
|
| 243 |
-
preview_output = gr.Dataframe(label="π Dataset Preview"
|
| 244 |
|
| 245 |
gr.Markdown("## π₯ Download Files")
|
| 246 |
with gr.Row():
|
|
|
|
| 240 |
status_output = gr.Textbox(label="π Status", interactive=False)
|
| 241 |
|
| 242 |
gr.Markdown("## π Preview of Processed Dataset")
|
| 243 |
+
preview_output = gr.Dataframe(label="π Dataset Preview")
|
| 244 |
|
| 245 |
gr.Markdown("## π₯ Download Files")
|
| 246 |
with gr.Row():
|