Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -99,9 +99,11 @@ def create_bar_chart(df, category):
|
|
99 |
|
100 |
# Main function to run the Streamlit app
|
101 |
def main():
|
102 |
-
|
103 |
-
st.
|
104 |
-
|
|
|
|
|
105 |
|
106 |
if content:
|
107 |
df = convert_markdown_table_to_dataframe(content)
|
@@ -111,12 +113,11 @@ def main():
|
|
111 |
if col in df.columns:
|
112 |
df[col] = pd.to_numeric(df[col], errors='coerce')
|
113 |
display_highest_combined_scores(df, score_columns)
|
114 |
-
|
115 |
-
|
116 |
# Create tabs for leaderboard and about section
|
117 |
content = create_yall()
|
118 |
tab1, tab2 = st.tabs(["π Leaderboard", "π About"])
|
119 |
|
|
|
120 |
# Leaderboard tab
|
121 |
with tab1:
|
122 |
if content:
|
|
|
99 |
|
100 |
# Main function to run the Streamlit app
|
101 |
def main():
|
102 |
+
# Set page configuration and title
|
103 |
+
st.set_page_config(page_title="YALL - Yet Another LLM Leaderboard", layout="wide")
|
104 |
+
|
105 |
+
st.title("π YALL - Yet Another LLM Leaderboard")
|
106 |
+
st.markdown("Leaderboard made with π§ [LLM AutoEval](https://github.com/mlabonne/llm-autoeval) using [Nous](https://huggingface.co/NousResearch) benchmark suite.")
|
107 |
|
108 |
if content:
|
109 |
df = convert_markdown_table_to_dataframe(content)
|
|
|
113 |
if col in df.columns:
|
114 |
df[col] = pd.to_numeric(df[col], errors='coerce')
|
115 |
display_highest_combined_scores(df, score_columns)
|
|
|
|
|
116 |
# Create tabs for leaderboard and about section
|
117 |
content = create_yall()
|
118 |
tab1, tab2 = st.tabs(["π Leaderboard", "π About"])
|
119 |
|
120 |
+
|
121 |
# Leaderboard tab
|
122 |
with tab1:
|
123 |
if content:
|