benderrodriguez
commited on
Commit
•
97d7ce3
1
Parent(s):
cf87b84
First result upload.
Browse files- app.py +2 -2
- benchmark.csv +5 -3
app.py
CHANGED
@@ -38,7 +38,7 @@ except Exception:
|
|
38 |
|
39 |
MODEL_COLUMN_NAME = "model"
|
40 |
|
41 |
-
column_names = {MODEL_COLUMN_NAME: "Model", "avg_wer": "Average WER ⬇️"}
|
42 |
|
43 |
leaderboard_df = pd.read_csv("benchmark.csv") # TODO: Move to a different place, probably in the github
|
44 |
leaderboard_df.loc[:, MODEL_COLUMN_NAME] = leaderboard_df[MODEL_COLUMN_NAME].apply(make_clickable_model)
|
@@ -76,4 +76,4 @@ with demo:
|
|
76 |
scheduler = BackgroundScheduler()
|
77 |
scheduler.add_job(restart_space, "interval", seconds=1800)
|
78 |
scheduler.start()
|
79 |
-
demo.queue(default_concurrency_limit=40).launch()
|
|
|
38 |
|
39 |
MODEL_COLUMN_NAME = "model"
|
40 |
|
41 |
+
column_names = {MODEL_COLUMN_NAME: "Model", "avg_wer": "Average WER ⬇️", "avg_wil": "Average WIL"}
|
42 |
|
43 |
leaderboard_df = pd.read_csv("benchmark.csv") # TODO: Move to a different place, probably in the github
|
44 |
leaderboard_df.loc[:, MODEL_COLUMN_NAME] = leaderboard_df[MODEL_COLUMN_NAME].apply(make_clickable_model)
|
|
|
76 |
scheduler = BackgroundScheduler()
|
77 |
scheduler.add_job(restart_space, "interval", seconds=1800)
|
78 |
scheduler.start()
|
79 |
+
demo.queue(default_concurrency_limit=40).launch()
|
benchmark.csv
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
-
model,avg_wer,ivrit-ai/
|
2 |
-
whisper-large-v2-d4,0.
|
3 |
-
whisper-v2-d3-e3,0.
|
|
|
|
|
|
1 |
+
model,avg_wer,avg_wil,ivrit-ai/eval-d1,ivrit-ai/saspeech,google/fleurs/he,mozilla-foundation/common_voice_17_0/he
|
2 |
+
ivrit-ai/whisper-large-v2-d4,0.0,0.063,0.080,0.242,0.207
|
3 |
+
ivrit-ai/whisper-v2-d3-e3,0.0,0.069,0.086,0.256,0.214
|
4 |
+
openai/whisper-large-v2,0.0,0.083,0.100,0.276,0.234
|
5 |
+
openai/whisper-large-v3,0.0,0.101,0.096,0.262,0.232
|