LiveHouse-TS / src /populate.py
zhouziyu02
Add TSFM Realworld Bench leaderboard
c29fb7f
Raw
History Blame Contribute Delete
253 Bytes
import pandas as pd
from src.leaderboard.read_evals import get_model_info
def get_model_info_df(results_path: str) -> pd.DataFrame:
records = [info.to_dict() for info in get_model_info(results_path)]
return pd.DataFrame.from_records(records)