Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -69,5 +69,5 @@ display_df = filtered_df.drop(columns=["model"], errors="ignore")
|
|
| 69 |
|
| 70 |
# Display the table sorted by accuracy in descending order
|
| 71 |
st.dataframe(
|
| 72 |
-
|
| 73 |
)
|
|
|
|
| 69 |
|
| 70 |
# Display the table sorted by accuracy in descending order
|
| 71 |
st.dataframe(
|
| 72 |
+
display_df.sort_values(by="accuracy", ascending=False).reset_index(drop=True).style.format(format_dict)
|
| 73 |
)
|