Spaces:
Runtime error
Runtime error
change Gradio version to 3.45.1
Browse files- README.md +12 -8
- requirements.txt +184 -91
README.md
CHANGED
@@ -1,11 +1,15 @@
|
|
1 |
---
|
2 |
-
title: Laronix
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 3.
|
8 |
app_file: app.py
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Laronix ASR TTS VC
|
3 |
+
emoji: 😻
|
4 |
+
colorFrom: pink
|
5 |
+
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 3.45.1
|
8 |
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
license: apache-2.0
|
11 |
+
python_version: 3.10
|
12 |
+
---
|
13 |
+
|
14 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
15 |
+
|
requirements.txt
CHANGED
@@ -1,103 +1,196 @@
|
|
1 |
-
absl-py==
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
antlr4-python3-runtime==4.8
|
6 |
-
anyio==3.
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
fairseq @ git+https://github.com/pytorch/fairseq.git@d03f4e771484a433f025f47744017c2eb6e9c6bc
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
hydra-core==1.0.7
|
35 |
-
idna==3.
|
36 |
-
importlib-metadata==4.
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
matplotlib==3.5.1
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
multidict==6.0.
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
omegaconf==2.0.6
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
pycparser==2.21
|
61 |
-
|
62 |
-
|
63 |
pyDeprecate==0.3.1
|
64 |
pydub==0.25.1
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
67 |
python-dateutil==2.8.2
|
68 |
-
python-multipart==0.0.
|
69 |
pytorch-lightning==1.5.10
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
74 |
requests-oauthlib==1.3.1
|
75 |
-
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
six==1.16.0
|
78 |
-
sniffio==1.
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==2.0.0
|
2 |
+
aiofiles==23.2.1
|
3 |
+
aiohttp==3.8.5
|
4 |
+
aiosignal==1.3.1
|
5 |
+
altair==5.1.2
|
6 |
+
annotated-types==0.5.0
|
7 |
antlr4-python3-runtime==4.8
|
8 |
+
anyio==3.7.1
|
9 |
+
argcomplete==3.1.2
|
10 |
+
asteroid-filterbanks==0.4.0
|
11 |
+
async-timeout==4.0.3
|
12 |
+
attrs==23.1.0
|
13 |
+
audioread==3.0.1
|
14 |
+
Babel==2.13.0
|
15 |
+
beautifulsoup4==4.12.2
|
16 |
+
bitarray==2.8.2
|
17 |
+
blinker==1.6.2
|
18 |
+
brotlipy==0.7.0
|
19 |
+
cachetools==5.3.1
|
20 |
+
certifi==2023.7.22
|
21 |
+
cffi==1.15.1
|
22 |
+
charset-normalizer==2.0.4
|
23 |
+
ci-sdr==0.0.2
|
24 |
+
click==8.1.7
|
25 |
+
clldutils==3.20.0
|
26 |
+
colorama==0.4.6
|
27 |
+
colorlog==6.7.0
|
28 |
+
ConfigArgParse==1.7
|
29 |
+
contourpy==1.1.1
|
30 |
+
cryptography==41.0.3
|
31 |
+
csvw==3.1.3
|
32 |
+
ctc-segmentation==1.7.4
|
33 |
+
cycler==0.12.0
|
34 |
+
Cython==3.0.2
|
35 |
+
datasets==2.14.5
|
36 |
+
decorator==5.1.1
|
37 |
+
dill==0.3.7
|
38 |
+
Distance==0.1.3
|
39 |
+
dlinfo==1.2.1
|
40 |
+
editdistance==0.6.2
|
41 |
+
einops==0.7.0
|
42 |
+
espnet==202308
|
43 |
+
espnet-model-zoo==0.1.7
|
44 |
+
espnet-tts-frontend==0.0.3
|
45 |
+
exceptiongroup==1.1.3
|
46 |
fairseq @ git+https://github.com/pytorch/fairseq.git@d03f4e771484a433f025f47744017c2eb6e9c6bc
|
47 |
+
fast-bss-eval==0.1.3
|
48 |
+
fastapi==0.103.2
|
49 |
+
ffmpy==0.3.1
|
50 |
+
filelock==3.12.4
|
51 |
+
Flask==3.0.0
|
52 |
+
fonttools==4.43.0
|
53 |
+
frozenlist==1.4.0
|
54 |
+
fsspec==2023.6.0
|
55 |
+
future==0.18.3
|
56 |
+
g2p-en==2.1.0
|
57 |
+
gdown==4.7.1
|
58 |
+
gmpy2==2.1.2
|
59 |
+
google-auth==2.23.2
|
60 |
+
google-auth-oauthlib==1.0.0
|
61 |
+
gradio==3.45.1
|
62 |
+
gradio_client==0.5.2
|
63 |
+
grpcio==1.59.0
|
64 |
+
h11==0.14.0
|
65 |
+
h5py==3.9.0
|
66 |
+
httpcore==0.18.0
|
67 |
+
httpx==0.25.0
|
68 |
+
huggingface-hub==0.16.4
|
69 |
+
humanfriendly==10.0
|
70 |
hydra-core==1.0.7
|
71 |
+
idna==3.4
|
72 |
+
importlib-metadata==4.13.0
|
73 |
+
importlib-resources==6.1.0
|
74 |
+
inflect==7.0.0
|
75 |
+
isodate==0.6.1
|
76 |
+
itsdangerous==2.1.2
|
77 |
+
jaconv==0.3.4
|
78 |
+
jamo==0.4.1
|
79 |
+
Jinja2==3.1.2
|
80 |
+
jiwer==3.0.3
|
81 |
+
joblib==1.3.2
|
82 |
+
jsonschema==4.19.1
|
83 |
+
jsonschema-specifications==2023.7.1
|
84 |
+
kaldiio==2.18.0
|
85 |
+
kiwisolver==1.4.5
|
86 |
+
language-tags==1.2.0
|
87 |
+
lazy_loader==0.3
|
88 |
+
librosa==0.9.2
|
89 |
+
lightning-utilities==0.9.0
|
90 |
+
llvmlite==0.41.0
|
91 |
+
lxml==4.9.3
|
92 |
+
Markdown==3.4.4
|
93 |
+
markdown-it-py==3.0.0
|
94 |
+
MarkupSafe==2.1.1
|
95 |
matplotlib==3.5.1
|
96 |
+
mdurl==0.1.2
|
97 |
+
mpmath==1.3.0
|
98 |
+
msgpack==1.0.7
|
99 |
+
multidict==6.0.4
|
100 |
+
multiprocess==0.70.15
|
101 |
+
networkx==3.1
|
102 |
+
nltk==3.8.1
|
103 |
+
numba==0.58.0
|
104 |
+
numpy==1.23.3
|
105 |
+
oauthlib==3.2.2
|
106 |
omegaconf==2.0.6
|
107 |
+
opt-einsum==3.3.0
|
108 |
+
orjson==3.9.7
|
109 |
+
packaging==23.2
|
110 |
+
pandas==2.1.1
|
111 |
+
parallel-wavegan==0.5.5
|
112 |
+
phonemizer==3.2.1
|
113 |
+
Pillow==9.4.0
|
114 |
+
pip==23.2.1
|
115 |
+
platformdirs==3.11.0
|
116 |
+
pooch==1.7.0
|
117 |
+
portalocker==2.8.2
|
118 |
+
protobuf==3.20.1
|
119 |
+
pyarrow==13.0.0
|
120 |
+
pyasn1==0.5.0
|
121 |
+
pyasn1-modules==0.3.0
|
122 |
pycparser==2.21
|
123 |
+
pydantic==2.4.2
|
124 |
+
pydantic_core==2.10.1
|
125 |
pyDeprecate==0.3.1
|
126 |
pydub==0.25.1
|
127 |
+
Pygments==2.16.1
|
128 |
+
pylatexenc==2.10
|
129 |
+
pyOpenSSL==23.2.0
|
130 |
+
pyparsing==3.1.1
|
131 |
+
pypinyin==0.44.0
|
132 |
+
PySocks==1.7.1
|
133 |
python-dateutil==2.8.2
|
134 |
+
python-multipart==0.0.6
|
135 |
pytorch-lightning==1.5.10
|
136 |
+
pytorch-wpe==0.0.1
|
137 |
+
pytz==2023.3.post1
|
138 |
+
pyworld==0.3.4
|
139 |
+
PyYAML==6.0.1
|
140 |
+
rapidfuzz==3.3.1
|
141 |
+
rdflib==7.0.0
|
142 |
+
referencing==0.30.2
|
143 |
+
regex==2023.10.3
|
144 |
+
requests==2.31.0
|
145 |
requests-oauthlib==1.3.1
|
146 |
+
resampy==0.4.2
|
147 |
+
rfc3986==1.5.0
|
148 |
+
rich==13.6.0
|
149 |
+
rpds-py==0.10.3
|
150 |
+
rsa==4.9
|
151 |
+
sacrebleu==2.3.1
|
152 |
+
safetensors==0.3.3
|
153 |
+
scikit-learn==1.3.1
|
154 |
+
scipy==1.11.3
|
155 |
+
segments==2.2.1
|
156 |
+
semantic-version==2.10.0
|
157 |
+
sentencepiece==0.1.97
|
158 |
+
setuptools==59.5.0
|
159 |
six==1.16.0
|
160 |
+
sniffio==1.3.0
|
161 |
+
soundfile==0.12.1
|
162 |
+
soupsieve==2.5
|
163 |
+
soxr==0.3.6
|
164 |
+
starlette==0.27.0
|
165 |
+
sympy==1.11.1
|
166 |
+
tabulate==0.9.0
|
167 |
+
tensorboard==2.14.1
|
168 |
+
tensorboard-data-server==0.7.1
|
169 |
+
tensorboardX==2.6.2.2
|
170 |
+
threadpoolctl==3.2.0
|
171 |
+
tokenizers==0.14.0
|
172 |
+
tomlkit==0.12.1
|
173 |
+
toolz==0.12.0
|
174 |
+
torch==2.0.1
|
175 |
+
torch-complex==0.4.3
|
176 |
+
torchaudio==2.0.2
|
177 |
+
torchmetrics==1.2.0
|
178 |
+
torchvision==0.15.2
|
179 |
+
tqdm==4.66.1
|
180 |
+
transformers==4.34.0
|
181 |
+
triton==2.0.0
|
182 |
+
typeguard==2.13.3
|
183 |
+
typing_extensions==4.7.1
|
184 |
+
tzdata==2023.3
|
185 |
+
Unidecode==1.3.7
|
186 |
+
uritemplate==4.1.1
|
187 |
+
urllib3==1.26.16
|
188 |
+
uvicorn==0.23.2
|
189 |
+
websockets==11.0.3
|
190 |
+
Werkzeug==3.0.0
|
191 |
+
wheel==0.41.2
|
192 |
+
xmltodict==0.13.0
|
193 |
+
xxhash==3.4.1
|
194 |
+
yarl==1.9.2
|
195 |
+
yq==3.2.3
|
196 |
+
zipp==3.17.0
|