Spaces:
Running
Running
File size: 253 Bytes
c29fb7f | 1 2 3 4 5 6 7 8 9 | 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)
|