mlabonne commited on
Commit
fcc23ad
β€’
1 Parent(s): 10974a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -92,7 +92,7 @@ def main():
92
  st.set_page_config(page_title="YALL - Yet Another LLM Leaderboard", layout="wide")
93
 
94
  st.title("πŸ† YALL - Yet Another LLM Leaderboard")
95
- st.markdown("Leaderboard made with 🧐 [LLM AutoEval](https:
96
  content = create_yall()
97
  tab1, tab2 = st.tabs(["πŸ† Leaderboard", "πŸ“ About"])
98
 
@@ -111,10 +111,14 @@ def main():
111
  full_df['Tags'] = full_df['Tags'].fillna('')
112
  df = pd.DataFrame(columns=full_df.columns)
113
 
114
- # Toggles for filtering by tags
115
- show_phi = st.checkbox("Phi (2.8B)", value=True)
116
- show_mistral = st.checkbox("Mistral (7B)", value=True)
117
- show_other = st.checkbox("Other", value=True)
 
 
 
 
118
 
119
  # Create a DataFrame based on selected filters
120
  dfs_to_concat = []
 
92
  st.set_page_config(page_title="YALL - Yet Another LLM Leaderboard", layout="wide")
93
 
94
  st.title("πŸ† YALL - Yet Another LLM Leaderboard")
95
+ st.markdown("Leaderboard made with 🧐 [LLM AutoEval](https://github.com/mlabonne/llm-autoeval) using [Nous](https://huggingface.co/NousResearch) benchmark suite.")
96
  content = create_yall()
97
  tab1, tab2 = st.tabs(["πŸ† Leaderboard", "πŸ“ About"])
98
 
 
111
  full_df['Tags'] = full_df['Tags'].fillna('')
112
  df = pd.DataFrame(columns=full_df.columns)
113
 
114
+ # Toggles
115
+ col1, col2, col3 = st.columns(3)
116
+ with col1:
117
+ show_phi = st.checkbox("Phi (2.8B)", value=True)
118
+ with col2:
119
+ show_mistral = st.checkbox("Mistral (7B)", value=True)
120
+ with col3:
121
+ show_other = st.checkbox("Other", value=True)
122
 
123
  # Create a DataFrame based on selected filters
124
  dfs_to_concat = []