Leaderboard / utils.py
01Yassine's picture
Upload 8 files
04f495f verified
import pandas as pd
def load_leaderboard(db_path):
df = pd.read_csv(db_path) # Update table name if needed
return df
custom_css = """
#leaderboard-table th .header-content {
white-space: nowrap;
}
"""