DF-Arena-Test / utils.py
Speech-Arena-2025's picture
Upload folder using huggingface_hub
5ecb433 verified
raw
history blame contribute delete
170 Bytes
import sqlite3
import pandas as pd
import streamlit as st
def load_leaderboard(db_path):
df = pd.read_csv(db_path) # Update table name if needed
return df