Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
better output
Browse files
app.py
CHANGED
|
@@ -388,8 +388,11 @@ def add_new_eval(
|
|
| 388 |
)
|
| 389 |
private_df["Model"] = model
|
| 390 |
private_df.columns = [col.replace("\n", " ") for col in private_df.columns]
|
| 391 |
-
|
| 392 |
-
|
|
|
|
|
|
|
|
|
|
| 393 |
|
| 394 |
# Save contact information
|
| 395 |
contact_info = {
|
|
|
|
| 388 |
)
|
| 389 |
private_df["Model"] = model
|
| 390 |
private_df.columns = [col.replace("\n", " ") for col in private_df.columns]
|
| 391 |
+
output_str = ""
|
| 392 |
+
for idx, row in private_df.iterrows():
|
| 393 |
+
for col in private_df.columns:
|
| 394 |
+
output_str += f"{col}: {row[col]}\n"
|
| 395 |
+
yield f"✅ Private evaluation complete. Please consider submitting publicly once you are comfortable with the results.\n{output_str}"
|
| 396 |
|
| 397 |
# Save contact information
|
| 398 |
contact_info = {
|