Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
cleanup
Browse files
app.py
CHANGED
|
@@ -388,11 +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 |
-
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
|
| 396 |
|
| 397 |
# Save contact information
|
| 398 |
contact_info = {
|
|
|
|
| 388 |
)
|
| 389 |
private_df["Model"] = model
|
| 390 |
private_df.columns = [col.replace("\n", " ") for col in private_df.columns]
|
| 391 |
+
output_str = f"Eval Type: {eval_type}\n"
|
| 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.\n\n{output_str}\nPlease consider submitting publicly once you are comfortable with the results."
|
| 396 |
|
| 397 |
# Save contact information
|
| 398 |
contact_info = {
|