CultriX commited on
Commit
5e3730c
β€’
1 Parent(s): 35bf268

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
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
- st.title("Model Leaderboard")
103
- st.markdown("Displaying top combinations of models based on scores.")
104
- content = """Your markdown content here""" # Placeholder for actual markdown content
 
 
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: