Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -111,13 +111,13 @@ def generate_score_chart_conscious_ai(dataframe):
|
|
111 |
return fig
|
112 |
|
113 |
# π **Animated Score Visualization for AI**
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
)
|
122 |
fig.update_traces(textposition="outside")
|
123 |
return fig
|
|
|
111 |
return fig
|
112 |
|
113 |
# π **Animated Score Visualization for AI**
|
114 |
+
def generate_score_chart_experimental_ai(dataframe):
|
115 |
+
fig = px.bar(
|
116 |
+
dataframe[dataframe["Category"] == "Experimental"].sort_values(by="Score", ascending=True),
|
117 |
+
x="Score", y="Model", orientation="h",
|
118 |
+
color="Score", text="Score",
|
119 |
+
title="π¬ AI Model Performance(Experimental)",
|
120 |
+
color_continuous_scale="electric"
|
121 |
)
|
122 |
fig.update_traces(textposition="outside")
|
123 |
return fig
|