Merge branch 'main' of https://huggingface.co/spaces/Cognitive-Lab/indic_llm_leaderboard
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ def main():
|
|
51 |
title_column, refresh_column = st.columns([.92, 0.08])
|
52 |
with title_column:
|
53 |
st.title("Indic LLM Leaderboard (α)")
|
54 |
-
st.markdown("The Indic
|
55 |
with refresh_column:
|
56 |
if st.button("Refresh", type="primary"):
|
57 |
data = get_data()
|
@@ -141,7 +141,7 @@ def main():
|
|
141 |
with col2:
|
142 |
language_options = st.multiselect(
|
143 |
'Pick Languages',
|
144 |
-
['kannada', 'hindi', 'tamil', '
|
145 |
if on:
|
146 |
for language in language_options:
|
147 |
filtered_df = df[(df['Language'] == language) & (df['Verified'] == is_verified)]
|
|
|
51 |
title_column, refresh_column = st.columns([.92, 0.08])
|
52 |
with title_column:
|
53 |
st.title("Indic LLM Leaderboard (α)")
|
54 |
+
st.markdown("The Indic LLM Leaderboard utilizes the [indic_eval](https://github.com/adithya-s-k/indic_eval) evaluation framework , incorporating SOTA translated benchmarks like ARC, Hellaswag, MMLU, among others. Supporting 7 Indic languages, it offers a comprehensive platform for assessing model performance and comparing results within the Indic language modeling landscape.")
|
55 |
with refresh_column:
|
56 |
if st.button("Refresh", type="primary"):
|
57 |
data = get_data()
|
|
|
141 |
with col2:
|
142 |
language_options = st.multiselect(
|
143 |
'Pick Languages',
|
144 |
+
['kannada', 'hindi', 'tamil', 'telugu','gujarati','marathi','malayalam',"english"],['kannada', 'hindi', 'tamil', 'telugu','gujarati','marathi','malayalam',"english"])
|
145 |
if on:
|
146 |
for language in language_options:
|
147 |
filtered_df = df[(df['Language'] == language) & (df['Verified'] == is_verified)]
|