Fix evaluate comment saving

This commit is contained in:
oobabooga 2023-04-21 12:34:08 -03:00
parent 5e023ae64d
commit d46b9b7c50
3 changed files with 4 additions and 1 deletions

View file

@ -24,6 +24,8 @@ past_evaluations = load_past_evaluations()
def save_past_evaluations(df):
global past_evaluations
past_evaluations = df
df.to_csv(Path('logs/evaluations.csv'), index=False)