jerpint commited on
Commit
ceb41f3
·
1 Parent(s): 928517a

change column name

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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")