Spaces:
Running
Running
Commit
·
9b89a02
1
Parent(s):
dfeeedc
Add application files
Browse files
app.py
CHANGED
@@ -73,7 +73,7 @@ def greet(name1, name2):
|
|
73 |
|
74 |
# Save the CSV data to a temporary file
|
75 |
with tempfile.NamedTemporaryFile(delete=False, suffix=".csv") as temp_file:
|
76 |
-
|
77 |
csv_output = temp_file.name
|
78 |
|
79 |
return html_output, csv_output
|
|
|
73 |
|
74 |
# Save the CSV data to a temporary file
|
75 |
with tempfile.NamedTemporaryFile(delete=False, suffix=".csv") as temp_file:
|
76 |
+
df_pred.to_csv(temp_file.name, index=False)
|
77 |
csv_output = temp_file.name
|
78 |
|
79 |
return html_output, csv_output
|