Corey Morris commited on
Commit
a450af5
1 Parent(s): 618dcce

Improved clarity of explanation for Radar charts

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -271,8 +271,13 @@ else:
271
  st.write("Please select different columns for the x and y axes.")
272
 
273
  # Section to select a model and display radar and line charts
274
- st.header("Compare selected models to models the closest 5 models on MMLU average")
275
- st.write("This is to demonstrate that while the average score is useful, there is a lot of variation in performance on individual tasks.")
 
 
 
 
 
276
  selected_model_name = st.selectbox("Select a Model:", filtered_data.index.tolist())
277
 
278
  # Get the closest 5 models with unique indices
 
271
  st.write("Please select different columns for the x and y axes.")
272
 
273
  # Section to select a model and display radar and line charts
274
+ st.header("Compare a Selected Model to the 5 Models Closest in MMLU Average Performance")
275
+ st.write("""
276
+ This comparison highlights the nuances in model performance across different tasks.
277
+ While the overall MMLU average score provides a general understanding of a model's capabilities,
278
+ examining the closest models reveals variations in performance on individual tasks.
279
+ Such an analysis can uncover specific strengths and weaknesses and guide further exploration and improvement.
280
+ """)
281
  selected_model_name = st.selectbox("Select a Model:", filtered_data.index.tolist())
282
 
283
  # Get the closest 5 models with unique indices