Commit Β·
06f8f46
1
Parent(s): 3836bc2
Fix Gradio compatibility - update to latest version
Browse files- app.py +1 -1
- requirements.txt +0 -0
app.py
CHANGED
|
@@ -233,7 +233,7 @@ with gr.Blocks(title="PromptPrepML", theme=gr.themes.Soft()) as demo:
|
|
| 233 |
value="Prepare this dataset for machine learning. Handle missing values, remove identifier columns, extract date features, encode categorical variables, and scale numeric features.",
|
| 234 |
lines=3
|
| 235 |
)
|
| 236 |
-
process_btn = gr.Button("π Process Dataset", variant="primary"
|
| 237 |
|
| 238 |
with gr.Column(scale=2):
|
| 239 |
output_summary = gr.Markdown(label="π Results Summary")
|
|
|
|
| 233 |
value="Prepare this dataset for machine learning. Handle missing values, remove identifier columns, extract date features, encode categorical variables, and scale numeric features.",
|
| 234 |
lines=3
|
| 235 |
)
|
| 236 |
+
process_btn = gr.Button("π Process Dataset", variant="primary")
|
| 237 |
|
| 238 |
with gr.Column(scale=2):
|
| 239 |
output_summary = gr.Markdown(label="π Results Summary")
|
requirements.txt
CHANGED
|
Binary files a/requirements.txt and b/requirements.txt differ
|
|
|