Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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"]
|
| 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"]
|
| 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"]
|
| 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"] == "
|
| 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",
|