Spaces:
Runtime error
Runtime error
VoiceCloning-be
commited on
Commit
·
04a6fd6
1
Parent(s):
9bfcb17
modified: .gitignore
Browse filesnew file: Applio
new file: requirements.txt
- .gitignore +0 -3
- Applio +1 -0
- requirements.txt +49 -0
.gitignore
CHANGED
@@ -2,15 +2,12 @@
|
|
2 |
*.pt
|
3 |
*.onnx
|
4 |
*.pyc
|
5 |
-
*.pth
|
6 |
-
*.index
|
7 |
*.mp3
|
8 |
*.flac
|
9 |
*.ogg
|
10 |
*.m4a
|
11 |
*.bin
|
12 |
*.wav
|
13 |
-
*.txt
|
14 |
*.zip
|
15 |
*.png
|
16 |
*.safetensors
|
|
|
2 |
*.pt
|
3 |
*.onnx
|
4 |
*.pyc
|
|
|
|
|
5 |
*.mp3
|
6 |
*.flac
|
7 |
*.ogg
|
8 |
*.m4a
|
9 |
*.bin
|
10 |
*.wav
|
|
|
11 |
*.zip
|
12 |
*.png
|
13 |
*.safetensors
|
Applio
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit da705bec26e966d66de25f40a719c0a2babea554
|
requirements.txt
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# General dependencies
|
2 |
+
pip==23.3; sys_platform == 'darwin'
|
3 |
+
wheel; sys_platform == 'darwin'
|
4 |
+
PyYAML; sys_platform == 'darwin'
|
5 |
+
ffmpeg-python>=0.2.0
|
6 |
+
numpy==1.23.5
|
7 |
+
requests==2.32.0
|
8 |
+
tqdm
|
9 |
+
wget
|
10 |
+
|
11 |
+
# Audio processing
|
12 |
+
faiss-cpu==1.7.3
|
13 |
+
librosa==0.9.2
|
14 |
+
pyworld==0.3.4
|
15 |
+
scipy==1.11.1
|
16 |
+
soundfile==0.12.1
|
17 |
+
praat-parselmouth
|
18 |
+
noisereduce
|
19 |
+
audio_upscaler==0.1.4
|
20 |
+
|
21 |
+
# Machine learning
|
22 |
+
omegaconf==2.0.5; sys_platform == 'darwin'
|
23 |
+
git+https://github.com/IAHispano/fairseq; sys_platform == 'linux'
|
24 |
+
fairseq==0.12.2; sys_platform == 'darwin' or sys_platform == 'win32'
|
25 |
+
numba; sys_platform == 'linux'
|
26 |
+
numba==0.57.0; sys_platform == 'darwin' or sys_platform == 'win32'
|
27 |
+
torchaudio==2.1.1
|
28 |
+
torch==2.1.1
|
29 |
+
torchcrepe==0.0.23
|
30 |
+
torchvision==0.16.1
|
31 |
+
einops
|
32 |
+
libf0
|
33 |
+
torchfcpe
|
34 |
+
|
35 |
+
# Visualization
|
36 |
+
matplotlib==3.7.2
|
37 |
+
tensorboard
|
38 |
+
gradio==4.36.0
|
39 |
+
|
40 |
+
# Miscellaneous
|
41 |
+
certifi==2024.7.4; sys_platform == 'darwin'
|
42 |
+
antlr4-python3-runtime==4.8; sys_platform == 'darwin'
|
43 |
+
ffmpy==0.3.1
|
44 |
+
tensorboardX
|
45 |
+
edge-tts==6.1.9
|
46 |
+
pypresence
|
47 |
+
beautifulsoup4
|
48 |
+
flask
|
49 |
+
local-attention
|