InstruSumEval / src /dummy_leaderboard.py
henryL7's picture
add dummy table
a553d47
raw
history blame
205 Bytes
import pandas as pd
# HEADERS = ["score1", "score2", "score3", "score4"]
TYPES = ["str", "number"]
DUMMY_LEADERBOARD = pd.DataFrame({"Model": ["gpt4", "gpt3"], "Score1": [0.1, 0.2], "Score2": [0.3, 0.4]})