TejAndrewsACC commited on
Commit
7f8e02f
Β·
verified Β·
1 Parent(s): 4425afb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -65,7 +65,7 @@ def init_acc_leaderboard(dataframe):
65
  # πŸ“ˆ **Animated Score Visualization for AI**
66
  def generate_score_chart_ai(dataframe):
67
  fig = px.bar(
68
- dataframe[dataframe["Category"] != "AGI"].sort_values(by="Score", ascending=True),
69
  x="Score", y="Model", orientation="h",
70
  color="Score", text="Score",
71
  title="πŸ”₯ AI Model Performance(AGI)",
@@ -77,7 +77,7 @@ def generate_score_chart_ai(dataframe):
77
  # πŸ“ˆ **Animated Score Visualization for AI**
78
  def generate_score_chart_assistant_ai(dataframe):
79
  fig = px.bar(
80
- dataframe[dataframe["Category"] != "Assistant"].sort_values(by="Score", ascending=True),
81
  x="Score", y="Model", orientation="h",
82
  color="Score", text="Score",
83
  title="πŸ”₯ AI Model Performance(Assistant)",
@@ -89,7 +89,7 @@ def generate_score_chart_assistant_ai(dataframe):
89
  # πŸ“ˆ **Animated Score Visualization for AI**
90
  def generate_score_chart_fun_ai(dataframe):
91
  fig = px.bar(
92
- dataframe[dataframe["Category"] != "Fun"].sort_values(by="Score", ascending=True),
93
  x="Score", y="Model", orientation="h",
94
  color="Score", text="Score",
95
  title="πŸ”₯ AI Model Performance(Fun)",
@@ -101,7 +101,7 @@ def generate_score_chart_fun_ai(dataframe):
101
  # πŸ“ˆ **Animated Score Visualization for Laser Models**
102
  def generate_score_chart_laser(dataframe):
103
  fig = px.bar(
104
- dataframe[dataframe["Category"] == "Experimental"].sort_values(by="Score", ascending=True),
105
  x="Score", y="Model", orientation="h",
106
  color="Score", text="Score",
107
  title="⚑ Laser Model Performance",
 
65
  # πŸ“ˆ **Animated Score Visualization for AI**
66
  def generate_score_chart_ai(dataframe):
67
  fig = px.bar(
68
+ dataframe[dataframe["Category"] == "AGI"].sort_values(by="Score", ascending=True),
69
  x="Score", y="Model", orientation="h",
70
  color="Score", text="Score",
71
  title="πŸ”₯ AI Model Performance(AGI)",
 
77
  # πŸ“ˆ **Animated Score Visualization for AI**
78
  def generate_score_chart_assistant_ai(dataframe):
79
  fig = px.bar(
80
+ dataframe[dataframe["Category"] == "Assistant"].sort_values(by="Score", ascending=True),
81
  x="Score", y="Model", orientation="h",
82
  color="Score", text="Score",
83
  title="πŸ”₯ AI Model Performance(Assistant)",
 
89
  # πŸ“ˆ **Animated Score Visualization for AI**
90
  def generate_score_chart_fun_ai(dataframe):
91
  fig = px.bar(
92
+ dataframe[dataframe["Category"] == "Fun"].sort_values(by="Score", ascending=True),
93
  x="Score", y="Model", orientation="h",
94
  color="Score", text="Score",
95
  title="πŸ”₯ AI Model Performance(Fun)",
 
101
  # πŸ“ˆ **Animated Score Visualization for Laser Models**
102
  def generate_score_chart_laser(dataframe):
103
  fig = px.bar(
104
+ dataframe[dataframe["Category"] == "Laser"].sort_values(by="Score", ascending=True),
105
  x="Score", y="Model", orientation="h",
106
  color="Score", text="Score",
107
  title="⚑ Laser Model Performance",