Spaces:
Running
on
Zero
Running
on
Zero
wenmeng.zwm
commited on
Commit
•
f7defef
1
Parent(s):
70cb6b0
update code
Browse files- app.py +4 -0
- cosyvoice/__pycache__/__init__.cpython-310.pyc +0 -0
- cosyvoice/utils/__pycache__/class_utils.cpython-310.pyc +0 -0
- cosyvoice/utils/__pycache__/common.cpython-310.pyc +0 -0
- cosyvoice/utils/__pycache__/file_utils.cpython-310.pyc +0 -0
- cosyvoice/utils/__pycache__/mask.cpython-310.pyc +0 -0
- requirements.txt +4 -7
app.py
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
import spaces
|
2 |
import os
|
3 |
import sys
|
@@ -96,4 +99,5 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css) as demo:
|
|
96 |
inputs=[audio_mode_radio],
|
97 |
outputs=[preset_layout, custom_layout, advanced_layout])
|
98 |
|
|
|
99 |
demo.queue().launch(server_port=7860)
|
|
|
1 |
+
import logging
|
2 |
+
logging.basicConfig(level=logging.INFO)
|
3 |
+
|
4 |
import spaces
|
5 |
import os
|
6 |
import sys
|
|
|
99 |
inputs=[audio_mode_radio],
|
100 |
outputs=[preset_layout, custom_layout, advanced_layout])
|
101 |
|
102 |
+
#demo.queue().launch(server_port=7860, share=True)
|
103 |
demo.queue().launch(server_port=7860)
|
cosyvoice/__pycache__/__init__.cpython-310.pyc
CHANGED
Binary files a/cosyvoice/__pycache__/__init__.cpython-310.pyc and b/cosyvoice/__pycache__/__init__.cpython-310.pyc differ
|
|
cosyvoice/utils/__pycache__/class_utils.cpython-310.pyc
CHANGED
Binary files a/cosyvoice/utils/__pycache__/class_utils.cpython-310.pyc and b/cosyvoice/utils/__pycache__/class_utils.cpython-310.pyc differ
|
|
cosyvoice/utils/__pycache__/common.cpython-310.pyc
CHANGED
Binary files a/cosyvoice/utils/__pycache__/common.cpython-310.pyc and b/cosyvoice/utils/__pycache__/common.cpython-310.pyc differ
|
|
cosyvoice/utils/__pycache__/file_utils.cpython-310.pyc
CHANGED
Binary files a/cosyvoice/utils/__pycache__/file_utils.cpython-310.pyc and b/cosyvoice/utils/__pycache__/file_utils.cpython-310.pyc differ
|
|
cosyvoice/utils/__pycache__/mask.cpython-310.pyc
CHANGED
Binary files a/cosyvoice/utils/__pycache__/mask.cpython-310.pyc and b/cosyvoice/utils/__pycache__/mask.cpython-310.pyc differ
|
|
requirements.txt
CHANGED
@@ -1,25 +1,22 @@
|
|
1 |
conformer==0.3.2
|
2 |
-
deepspeed==0.14.2
|
3 |
diffusers==0.27.2
|
4 |
gdown==5.1.0
|
5 |
gradio==4.32.2
|
6 |
-
grpcio==1.57.0
|
7 |
-
grpcio-tools==1.57.0
|
8 |
hydra-core==1.3.2
|
9 |
HyperPyYAML==1.2.2
|
10 |
-
inflect
|
11 |
librosa==0.10.2
|
12 |
lightning==2.2.4
|
13 |
matplotlib==3.7.5
|
14 |
modelscope==1.15.0
|
15 |
networkx==3.1
|
16 |
omegaconf==2.3.0
|
17 |
-
onnxruntime-gpu
|
18 |
openai-whisper==20231117
|
19 |
protobuf==4.25
|
20 |
pydantic==2.7.0
|
21 |
rich==13.7.1
|
22 |
soundfile==0.12.1
|
23 |
tensorboard==2.14.0
|
24 |
-
torchaudio
|
25 |
-
wget==3.2
|
|
|
1 |
conformer==0.3.2
|
2 |
+
#deepspeed==0.14.2
|
3 |
diffusers==0.27.2
|
4 |
gdown==5.1.0
|
5 |
gradio==4.32.2
|
|
|
|
|
6 |
hydra-core==1.3.2
|
7 |
HyperPyYAML==1.2.2
|
8 |
+
inflect
|
9 |
librosa==0.10.2
|
10 |
lightning==2.2.4
|
11 |
matplotlib==3.7.5
|
12 |
modelscope==1.15.0
|
13 |
networkx==3.1
|
14 |
omegaconf==2.3.0
|
15 |
+
onnxruntime-gpu
|
16 |
openai-whisper==20231117
|
17 |
protobuf==4.25
|
18 |
pydantic==2.7.0
|
19 |
rich==13.7.1
|
20 |
soundfile==0.12.1
|
21 |
tensorboard==2.14.0
|
22 |
+
torchaudio
|
|