Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
e8c2599
1
Parent(s):
7cc7587
fix bug
Browse files- .gitmodules +3 -0
- Matcha-TTS +1 -0
- app.py +1 -0
- requirements.txt +21 -0
- utils/__pycache__/interface.cpython-310.pyc +0 -0
.gitmodules
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[submodule "Matcha-TTS"]
|
2 |
+
path = Matcha-TTS
|
3 |
+
url = https://github.com/shivammehta25/Matcha-TTS
|
Matcha-TTS
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit bd4d90d93214b37f7a159cf205ae85762c2c10aa
|
app.py
CHANGED
@@ -9,6 +9,7 @@ import os
|
|
9 |
import sys
|
10 |
|
11 |
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
|
|
12 |
|
13 |
from utils.interface import MIMOInterface
|
14 |
|
|
|
9 |
import sys
|
10 |
|
11 |
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
12 |
+
sys.path.append("/home/user/app/Matcha-TTS")
|
13 |
|
14 |
from utils.interface import MIMOInterface
|
15 |
|
requirements.txt
CHANGED
@@ -11,24 +11,32 @@ async-timeout==5.0.1
|
|
11 |
attrs==25.3.0
|
12 |
audioread==3.0.1
|
13 |
Authlib==1.6.4
|
|
|
14 |
Brotli==1.1.0
|
15 |
certifi==2025.8.3
|
16 |
cffi==2.0.0
|
17 |
charset-normalizer==3.4.3
|
18 |
click==8.0.4
|
19 |
coloredlogs==15.0.1
|
|
|
|
|
20 |
cryptography==46.0.1
|
|
|
21 |
datasets==4.0.0
|
22 |
decorator==5.2.1
|
|
|
23 |
dill==0.3.8
|
|
|
24 |
exceptiongroup==1.3.0
|
25 |
executing==2.2.1
|
26 |
fastapi==0.117.1
|
27 |
ffmpy==0.6.1
|
28 |
filelock==3.19.1
|
29 |
flatbuffers==25.9.23
|
|
|
30 |
frozenlist==1.7.0
|
31 |
fsspec==2025.3.0
|
|
|
32 |
gradio==5.47.2
|
33 |
gradio_client==1.13.3
|
34 |
groovy==0.1.2
|
@@ -43,6 +51,7 @@ humanfriendly==10.0
|
|
43 |
hydra-core==1.3.2
|
44 |
HyperPyYAML==1.2.2
|
45 |
idna==3.10
|
|
|
46 |
ipython==8.37.0
|
47 |
itsdangerous==2.2.0
|
48 |
jedi==0.19.2
|
@@ -50,11 +59,15 @@ Jinja2==3.1.6
|
|
50 |
joblib==1.5.2
|
51 |
jsonschema==4.25.1
|
52 |
jsonschema-specifications==2025.9.1
|
|
|
53 |
lazy_loader==0.4
|
54 |
librosa==0.11.0
|
|
|
|
|
55 |
llvmlite==0.45.0
|
56 |
markdown-it-py==4.0.0
|
57 |
MarkupSafe==3.0.2
|
|
|
58 |
matplotlib-inline==0.1.7
|
59 |
mcp==1.10.1
|
60 |
mdurl==0.1.2
|
@@ -102,10 +115,14 @@ pydantic-settings==2.11.0
|
|
102 |
pydantic_core==2.33.2
|
103 |
pydub==0.25.1
|
104 |
Pygments==2.19.2
|
|
|
|
|
105 |
python-dateutil==2.9.0.post0
|
106 |
python-dotenv==1.1.1
|
107 |
python-multipart==0.0.20
|
|
|
108 |
pytz==2025.2
|
|
|
109 |
PyYAML==6.0.2
|
110 |
referencing==0.36.2
|
111 |
regex==2025.9.18
|
@@ -124,6 +141,7 @@ shellingham==1.5.4
|
|
124 |
six==1.17.0
|
125 |
sniffio==1.3.1
|
126 |
soundfile==0.13.1
|
|
|
127 |
soxr==1.0.0
|
128 |
spaces==0.42.0
|
129 |
sse-starlette==3.0.2
|
@@ -135,6 +153,7 @@ tokenizers==0.22.1
|
|
135 |
tomlkit==0.13.3
|
136 |
torch==2.8.0
|
137 |
torchaudio==2.8.0
|
|
|
138 |
tqdm==4.67.1
|
139 |
traitlets==5.14.3
|
140 |
transformers==4.56.2
|
@@ -147,5 +166,7 @@ urllib3==2.5.0
|
|
147 |
uvicorn==0.37.0
|
148 |
wcwidth==0.2.14
|
149 |
websockets==15.0.1
|
|
|
150 |
xxhash==3.5.0
|
151 |
yarl==1.20.1
|
|
|
|
11 |
attrs==25.3.0
|
12 |
audioread==3.0.1
|
13 |
Authlib==1.6.4
|
14 |
+
beautifulsoup4==4.14.2
|
15 |
Brotli==1.1.0
|
16 |
certifi==2025.8.3
|
17 |
cffi==2.0.0
|
18 |
charset-normalizer==3.4.3
|
19 |
click==8.0.4
|
20 |
coloredlogs==15.0.1
|
21 |
+
conformer==0.3.2
|
22 |
+
contourpy==1.3.2
|
23 |
cryptography==46.0.1
|
24 |
+
cycler==0.12.1
|
25 |
datasets==4.0.0
|
26 |
decorator==5.2.1
|
27 |
+
diffusers==0.35.1
|
28 |
dill==0.3.8
|
29 |
+
einops==0.8.1
|
30 |
exceptiongroup==1.3.0
|
31 |
executing==2.2.1
|
32 |
fastapi==0.117.1
|
33 |
ffmpy==0.6.1
|
34 |
filelock==3.19.1
|
35 |
flatbuffers==25.9.23
|
36 |
+
fonttools==4.60.1
|
37 |
frozenlist==1.7.0
|
38 |
fsspec==2025.3.0
|
39 |
+
gdown==5.2.0
|
40 |
gradio==5.47.2
|
41 |
gradio_client==1.13.3
|
42 |
groovy==0.1.2
|
|
|
51 |
hydra-core==1.3.2
|
52 |
HyperPyYAML==1.2.2
|
53 |
idna==3.10
|
54 |
+
importlib_metadata==8.7.0
|
55 |
ipython==8.37.0
|
56 |
itsdangerous==2.2.0
|
57 |
jedi==0.19.2
|
|
|
59 |
joblib==1.5.2
|
60 |
jsonschema==4.25.1
|
61 |
jsonschema-specifications==2025.9.1
|
62 |
+
kiwisolver==1.4.9
|
63 |
lazy_loader==0.4
|
64 |
librosa==0.11.0
|
65 |
+
lightning==2.5.5
|
66 |
+
lightning-utilities==0.15.2
|
67 |
llvmlite==0.45.0
|
68 |
markdown-it-py==4.0.0
|
69 |
MarkupSafe==3.0.2
|
70 |
+
matplotlib==3.10.6
|
71 |
matplotlib-inline==0.1.7
|
72 |
mcp==1.10.1
|
73 |
mdurl==0.1.2
|
|
|
115 |
pydantic_core==2.33.2
|
116 |
pydub==0.25.1
|
117 |
Pygments==2.19.2
|
118 |
+
pyparsing==3.2.5
|
119 |
+
PySocks==1.7.1
|
120 |
python-dateutil==2.9.0.post0
|
121 |
python-dotenv==1.1.1
|
122 |
python-multipart==0.0.20
|
123 |
+
pytorch-lightning==2.5.5
|
124 |
pytz==2025.2
|
125 |
+
pyworld==0.3.5
|
126 |
PyYAML==6.0.2
|
127 |
referencing==0.36.2
|
128 |
regex==2025.9.18
|
|
|
141 |
six==1.17.0
|
142 |
sniffio==1.3.1
|
143 |
soundfile==0.13.1
|
144 |
+
soupsieve==2.8
|
145 |
soxr==1.0.0
|
146 |
spaces==0.42.0
|
147 |
sse-starlette==3.0.2
|
|
|
153 |
tomlkit==0.13.3
|
154 |
torch==2.8.0
|
155 |
torchaudio==2.8.0
|
156 |
+
torchmetrics==1.8.2
|
157 |
tqdm==4.67.1
|
158 |
traitlets==5.14.3
|
159 |
transformers==4.56.2
|
|
|
166 |
uvicorn==0.37.0
|
167 |
wcwidth==0.2.14
|
168 |
websockets==15.0.1
|
169 |
+
wget==3.2
|
170 |
xxhash==3.5.0
|
171 |
yarl==1.20.1
|
172 |
+
zipp==3.23.0
|
utils/__pycache__/interface.cpython-310.pyc
CHANGED
Binary files a/utils/__pycache__/interface.cpython-310.pyc and b/utils/__pycache__/interface.cpython-310.pyc differ
|
|