patrickvonplaten commited on
Commit
ccc26b7
·
1 Parent(s): 0806a18
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -75,4 +75,8 @@ if len(non_evaluated_submissions) > 0:
75
  commit_url = reference_repo.push_to_hub()
76
  print(commit_url)
77
 
 
 
 
 
78
  st.table(all_results)
 
75
  commit_url = reference_repo.push_to_hub()
76
  print(commit_url)
77
 
78
+ COLUMN_NAMES = {"librispeech-clean": "ls-clean", "librispeech-other": "ls-other", "common-voice-9": "cv9", "vox-populi": "vox", "ted-lium": "ted", "giga-speech": "giga", "spgi-speech": "spgi", "earnings-22": "e22", "ami": "ami"}
79
+
80
+ table = all_results.round(2)
81
+ table = table.rename(COLUMN_NAMES )
82
  st.table(all_results)