Spaces:
Running
Running
change column name
Browse files
app.py
CHANGED
@@ -55,9 +55,9 @@ for model in df.model.unique():
|
|
55 |
total_stars = silver_stars + gold_stars
|
56 |
star_summary[model] = {
|
57 |
"Model": model,
|
58 |
-
"Silver Stars ⭐️": silver_stars,
|
59 |
-
"Gold Stars ⭐️": gold_stars,
|
60 |
"Total Stars ⭐️": total_stars,
|
|
|
|
|
61 |
}
|
62 |
|
63 |
star_df = pd.DataFrame.from_dict(star_summary, orient="index")
|
|
|
55 |
total_stars = silver_stars + gold_stars
|
56 |
star_summary[model] = {
|
57 |
"Model": model,
|
|
|
|
|
58 |
"Total Stars ⭐️": total_stars,
|
59 |
+
"Part 1 ⭐️": silver_stars,
|
60 |
+
"Part 2 ⭐️": gold_stars,
|
61 |
}
|
62 |
|
63 |
star_df = pd.DataFrame.from_dict(star_summary, orient="index")
|