Commit
·
ae20e1b
1
Parent(s):
5cd28f2
Update app.py
Browse files
app.py
CHANGED
@@ -5,18 +5,12 @@ from tqdm.auto import tqdm
|
|
5 |
import streamlit as st
|
6 |
from huggingface_hub import HfApi, hf_hub_download
|
7 |
from huggingface_hub.repocard import metadata_load
|
|
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
suggested_datasets = [
|
14 |
-
"librispeech_asr",
|
15 |
-
"mozilla-foundation/common_voice_8_0",
|
16 |
-
"mozilla-foundation/common_voice_7_0",
|
17 |
-
"speech-recognition-community-v2/eval_data",
|
18 |
-
"facebook/multilingual_librispeech"
|
19 |
-
]
|
20 |
|
21 |
|
22 |
def make_clickable(model_name):
|
@@ -26,7 +20,7 @@ def make_clickable(model_name):
|
|
26 |
|
27 |
def get_model_ids():
|
28 |
api = HfApi()
|
29 |
-
models = api.list_models(filter="
|
30 |
model_ids = [x.modelId for x in models]
|
31 |
return model_ids
|
32 |
|
|
|
5 |
import streamlit as st
|
6 |
from huggingface_hub import HfApi, hf_hub_download
|
7 |
from huggingface_hub.repocard import metadata_load
|
8 |
+
import datetime
|
9 |
|
10 |
+
|
11 |
+
|
12 |
+
today = datetime.date.today()
|
13 |
+
year, week, _ = today.isocalendar()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
|
16 |
def make_clickable(model_name):
|
|
|
20 |
|
21 |
def get_model_ids():
|
22 |
api = HfApi()
|
23 |
+
models = api.list_models(filter="esc-bench")
|
24 |
model_ids = [x.modelId for x in models]
|
25 |
return model_ids
|
26 |
|