Update app.py
Browse files
app.py
CHANGED
@@ -84,9 +84,6 @@ def create_bar_chart(df, category):
|
|
84 |
# Adjust the height of the chart based on the number of rows in the DataFrame
|
85 |
st.plotly_chart(fig, use_container_width=True, height=35)
|
86 |
|
87 |
-
# Example usage:
|
88 |
-
# create_bar_chart(your_dataframe, 'Your_Category')
|
89 |
-
|
90 |
|
91 |
def main():
|
92 |
st.set_page_config(page_title="YALL - Yet Another LLM Leaderboard", layout="wide")
|
@@ -114,11 +111,11 @@ def main():
|
|
114 |
# Toggles
|
115 |
col1, col2, col3, col4 = st.columns(4)
|
116 |
with col1:
|
117 |
-
|
118 |
with col2:
|
119 |
show_mistral = st.checkbox("Mistral (7B)", value=False)
|
120 |
with col3:
|
121 |
-
|
122 |
with col4:
|
123 |
show_other = st.checkbox("Other", value=False)
|
124 |
|
|
|
84 |
# Adjust the height of the chart based on the number of rows in the DataFrame
|
85 |
st.plotly_chart(fig, use_container_width=True, height=35)
|
86 |
|
|
|
|
|
|
|
87 |
|
88 |
def main():
|
89 |
st.set_page_config(page_title="YALL - Yet Another LLM Leaderboard", layout="wide")
|
|
|
111 |
# Toggles
|
112 |
col1, col2, col3, col4 = st.columns(4)
|
113 |
with col1:
|
114 |
+
show_llama = st.checkbox("Llama 3 (8B)", value=True)
|
115 |
with col2:
|
116 |
show_mistral = st.checkbox("Mistral (7B)", value=False)
|
117 |
with col3:
|
118 |
+
show_phi = st.checkbox("Phi (2.8B)", value=False)
|
119 |
with col4:
|
120 |
show_other = st.checkbox("Other", value=False)
|
121 |
|