saattrupdan commited on
Commit
a1248d7
·
1 Parent(s): 5e55e05

fix: Do not use "test"

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -681,7 +681,7 @@ def fetch_results() -> dict[Language, pd.DataFrame]:
681
  f"test_{dataset.task.metric}",
682
  test_score_dict.get(dataset.task.metric)
683
  )
684
- for test_score_dict in record["results"]["raw"]["test"]
685
  ]
686
  if dataset.task in data_dict[model_name]:
687
  data_dict[model_name][dataset.task].append(scores)
 
681
  f"test_{dataset.task.metric}",
682
  test_score_dict.get(dataset.task.metric)
683
  )
684
+ for test_score_dict in record["results"]["raw"]
685
  ]
686
  if dataset.task in data_dict[model_name]:
687
  data_dict[model_name][dataset.task].append(scores)