Spaces:
Sleeping
Sleeping
j-tobias
commited on
Commit
•
bb8566e
1
Parent(s):
1dc0a7f
Add application file
Browse files- app.py +2 -2
- requirements.txt +72 -0
app.py
CHANGED
@@ -36,7 +36,7 @@ def is_own(data_subset:str):
|
|
36 |
own_transcription = None
|
37 |
return own_audio, own_transcription
|
38 |
|
39 |
-
with gr.Blocks() as
|
40 |
|
41 |
gr.Markdown("# VocalVenturer 💬")
|
42 |
gr.Markdown("-------")
|
@@ -105,4 +105,4 @@ with gr.Blocks() as app:
|
|
105 |
|
106 |
eval_btn.click(eval, [data_subset, model_1, model_2, model_3], results)
|
107 |
|
108 |
-
|
|
|
36 |
own_transcription = None
|
37 |
return own_audio, own_transcription
|
38 |
|
39 |
+
with gr.Blocks() as demo:
|
40 |
|
41 |
gr.Markdown("# VocalVenturer 💬")
|
42 |
gr.Markdown("-------")
|
|
|
105 |
|
106 |
eval_btn.click(eval, [data_subset, model_1, model_2, model_3], results)
|
107 |
|
108 |
+
demo.launch(debug=True)
|
requirements.txt
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiofiles==23.2.1
|
2 |
+
aiohappyeyeballs==2.3.5
|
3 |
+
aiohttp==3.10.2
|
4 |
+
aiosignal==1.3.1
|
5 |
+
annotated-types==0.7.0
|
6 |
+
anyio==4.4.0
|
7 |
+
async-timeout==4.0.3
|
8 |
+
attrs==24.2.0
|
9 |
+
certifi==2024.7.4
|
10 |
+
charset-normalizer==3.3.2
|
11 |
+
click==8.1.7
|
12 |
+
contourpy==1.2.1
|
13 |
+
cycler==0.12.1
|
14 |
+
datasets==2.20.0
|
15 |
+
dill==0.3.8
|
16 |
+
exceptiongroup==1.2.2
|
17 |
+
fastapi==0.112.0
|
18 |
+
ffmpy==0.4.0
|
19 |
+
filelock==3.15.4
|
20 |
+
fonttools==4.53.1
|
21 |
+
frozenlist==1.4.1
|
22 |
+
fsspec==2024.5.0
|
23 |
+
gradio==4.41.0
|
24 |
+
gradio_client==1.3.0
|
25 |
+
h11==0.14.0
|
26 |
+
httpcore==1.0.5
|
27 |
+
httpx==0.27.0
|
28 |
+
huggingface-hub==0.24.5
|
29 |
+
idna==3.7
|
30 |
+
importlib_resources==6.4.0
|
31 |
+
Jinja2==3.1.4
|
32 |
+
kiwisolver==1.4.5
|
33 |
+
markdown-it-py==3.0.0
|
34 |
+
MarkupSafe==2.1.5
|
35 |
+
matplotlib==3.9.1.post1
|
36 |
+
mdurl==0.1.2
|
37 |
+
multidict==6.0.5
|
38 |
+
multiprocess==0.70.16
|
39 |
+
numpy==2.0.1
|
40 |
+
orjson==3.10.7
|
41 |
+
packaging==24.1
|
42 |
+
pandas==2.2.2
|
43 |
+
pillow==10.4.0
|
44 |
+
pyarrow==17.0.0
|
45 |
+
pyarrow-hotfix==0.6
|
46 |
+
pydantic==2.8.2
|
47 |
+
pydantic_core==2.20.1
|
48 |
+
pydub==0.25.1
|
49 |
+
Pygments==2.18.0
|
50 |
+
pyparsing==3.1.2
|
51 |
+
python-dateutil==2.9.0.post0
|
52 |
+
python-multipart==0.0.9
|
53 |
+
pytz==2024.1
|
54 |
+
PyYAML==6.0.2
|
55 |
+
requests==2.32.3
|
56 |
+
rich==13.7.1
|
57 |
+
ruff==0.5.7
|
58 |
+
semantic-version==2.10.0
|
59 |
+
shellingham==1.5.4
|
60 |
+
six==1.16.0
|
61 |
+
sniffio==1.3.1
|
62 |
+
starlette==0.37.2
|
63 |
+
tomlkit==0.12.0
|
64 |
+
tqdm==4.66.5
|
65 |
+
typer==0.12.3
|
66 |
+
typing_extensions==4.12.2
|
67 |
+
tzdata==2024.1
|
68 |
+
urllib3==2.2.2
|
69 |
+
uvicorn==0.30.5
|
70 |
+
websockets==12.0
|
71 |
+
xxhash==3.4.1
|
72 |
+
yarl==1.9.4
|