Spaces:
Sleeping
Sleeping
File size: 278 Bytes
450856d d5df872 450856d 3c986cb 450856d d5df872 450856d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
import os
from datasets import load_dataset
HF_TOKEN = os.environ.get("HF_TOKEN")
ds = load_dataset("CohereForAI/mmlu-translations-results", split="train", token=HF_TOKEN)
df = ds.to_pandas()
st.title("MMLU Translations Progress")
st.dataframe(df)
|