Commit
·
3e1f438
1
Parent(s):
e231451
up
Browse files- app.py +6 -3
- references +1 -0
- submissions +1 -0
app.py
CHANGED
@@ -75,8 +75,11 @@ if len(non_evaluated_submissions) > 0:
|
|
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(table)
|
|
|
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", "chime-4": "chime", "switch-board": "swbd"}
|
79 |
+
|
80 |
+
table = all_results.round(4)
|
81 |
+
table = table.rename(columns=COLUMN_NAMES)
|
82 |
+
|
83 |
+
import ipdb; ipdb.set_trace()
|
84 |
|
|
|
|
|
85 |
st.table(table)
|
references
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 0fb7cf24ffe299a088275d73542484efad3c2667
|
submissions
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit 90499e5ee6647df7deff8cef68c36c49a43d2c7e
|