File size: 262 Bytes
1fac449
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st
import pandas as pd

# Load the CSV file
file_path = "data/concat_all_subjects_EM_per_error.csv"
df = pd.read_csv(file_path)

# Streamlit app
st.title("Exact Match (EM) for each model on all MMLU-Redux subjects combined")

st.dataframe(df)