Spaces:
Sleeping
Sleeping
Upload 32 files
Browse files- .gitattributes +2 -35
- .gitignore +166 -0
- LICENSE +21 -0
- images/webui_dl_model.png +0 -0
- images/webui_generate.png +0 -0
- images/webui_upload_model.png +0 -0
- mdxnet_models/model_data.json +340 -0
- requirements.txt +22 -0
- rvc_models/MODELS.txt +2 -0
- rvc_models/public_models.json +626 -0
- song_output/OUTPUT.txt +1 -0
- src/configs/32k.json +46 -0
- src/configs/32k_v2.json +46 -0
- src/configs/40k.json +46 -0
- src/configs/48k.json +46 -0
- src/configs/48k_v2.json +46 -0
- src/download_models.py +31 -0
- src/infer_pack/attentions.py +417 -0
- src/infer_pack/commons.py +166 -0
- src/infer_pack/models.py +1124 -0
- src/infer_pack/models_onnx.py +818 -0
- src/infer_pack/models_onnx_moess.py +849 -0
- src/infer_pack/modules.py +522 -0
- src/infer_pack/transforms.py +209 -0
- src/main.py +355 -0
- src/mdx.py +287 -0
- src/my_utils.py +21 -0
- src/rmvpe.py +409 -0
- src/rvc.py +151 -0
- src/trainset_preprocess_pipeline_print.py +146 -0
- src/vc_infer_pipeline.py +653 -0
- src/webui.py +322 -0
.gitattributes
CHANGED
@@ -1,35 +1,2 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
*.bin filter=lfs diff=lfs merge=lfs -text
|
4 |
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
6 |
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
7 |
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
8 |
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
9 |
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
10 |
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
11 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
12 |
-
*.model filter=lfs diff=lfs merge=lfs -text
|
13 |
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
14 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
15 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
16 |
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
17 |
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
18 |
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
19 |
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
20 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
21 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
22 |
-
*.pt filter=lfs diff=lfs merge=lfs -text
|
23 |
-
*.pth filter=lfs diff=lfs merge=lfs -text
|
24 |
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
25 |
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
26 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
27 |
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
29 |
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
30 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
1 |
+
# Auto detect text files and perform LF normalization
|
2 |
+
* text=auto
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.gitignore
ADDED
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MDX Models
|
2 |
+
mdxnet_models/*.onnx
|
3 |
+
|
4 |
+
# RVC Models
|
5 |
+
rvc_models/*/*.pth
|
6 |
+
rvc_models/*/*.index
|
7 |
+
rvc_models/*/*.npy
|
8 |
+
rvc_models/hubert_base.pt
|
9 |
+
rvc_models/rmvpe.pt
|
10 |
+
|
11 |
+
# Output
|
12 |
+
song_output/*/*.wav
|
13 |
+
song_output/*/*.mp3
|
14 |
+
|
15 |
+
# Byte-compiled / optimized / DLL files
|
16 |
+
__pycache__/
|
17 |
+
*.py[cod]
|
18 |
+
*$py.class
|
19 |
+
|
20 |
+
# C extensions
|
21 |
+
*.so
|
22 |
+
|
23 |
+
# Distribution / packaging
|
24 |
+
.Python
|
25 |
+
build/
|
26 |
+
develop-eggs/
|
27 |
+
dist/
|
28 |
+
downloads/
|
29 |
+
eggs/
|
30 |
+
.eggs/
|
31 |
+
lib/
|
32 |
+
lib64/
|
33 |
+
parts/
|
34 |
+
sdist/
|
35 |
+
var/
|
36 |
+
wheels/
|
37 |
+
share/python-wheels/
|
38 |
+
*.egg-info/
|
39 |
+
.installed.cfg
|
40 |
+
*.egg
|
41 |
+
MANIFEST
|
42 |
+
|
43 |
+
# PyInstaller
|
44 |
+
# Usually these files are written by a python script from a template
|
45 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
46 |
+
*.manifest
|
47 |
+
*.spec
|
48 |
+
|
49 |
+
# Installer logs
|
50 |
+
pip-log.txt
|
51 |
+
pip-delete-this-directory.txt
|
52 |
+
|
53 |
+
# Unit test / coverage reports
|
54 |
+
htmlcov/
|
55 |
+
.tox/
|
56 |
+
.nox/
|
57 |
+
.coverage
|
58 |
+
.coverage.*
|
59 |
+
.cache
|
60 |
+
nosetests.xml
|
61 |
+
coverage.xml
|
62 |
+
*.cover
|
63 |
+
*.py,cover
|
64 |
+
.hypothesis/
|
65 |
+
.pytest_cache/
|
66 |
+
cover/
|
67 |
+
|
68 |
+
# Translations
|
69 |
+
*.mo
|
70 |
+
*.pot
|
71 |
+
|
72 |
+
# Django stuff:
|
73 |
+
*.log
|
74 |
+
local_settings.py
|
75 |
+
db.sqlite3
|
76 |
+
db.sqlite3-journal
|
77 |
+
|
78 |
+
# Flask stuff:
|
79 |
+
instance/
|
80 |
+
.webassets-cache
|
81 |
+
|
82 |
+
# Scrapy stuff:
|
83 |
+
.scrapy
|
84 |
+
|
85 |
+
# Sphinx documentation
|
86 |
+
docs/_build/
|
87 |
+
|
88 |
+
# PyBuilder
|
89 |
+
.pybuilder/
|
90 |
+
target/
|
91 |
+
|
92 |
+
# Jupyter Notebook
|
93 |
+
.ipynb_checkpoints
|
94 |
+
|
95 |
+
# IPython
|
96 |
+
profile_default/
|
97 |
+
ipython_config.py
|
98 |
+
|
99 |
+
# pyenv
|
100 |
+
# For a library or package, you might want to ignore these files since the code is
|
101 |
+
# intended to run in multiple environments; otherwise, check them in:
|
102 |
+
# .python-version
|
103 |
+
|
104 |
+
# pipenv
|
105 |
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
106 |
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
107 |
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
108 |
+
# install all needed dependencies.
|
109 |
+
#Pipfile.lock
|
110 |
+
|
111 |
+
# poetry
|
112 |
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
113 |
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
114 |
+
# commonly ignored for libraries.
|
115 |
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
116 |
+
#poetry.lock
|
117 |
+
|
118 |
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
119 |
+
__pypackages__/
|
120 |
+
|
121 |
+
# Celery stuff
|
122 |
+
celerybeat-schedule
|
123 |
+
celerybeat.pid
|
124 |
+
|
125 |
+
# SageMath parsed files
|
126 |
+
*.sage.py
|
127 |
+
|
128 |
+
# Environments
|
129 |
+
.env
|
130 |
+
.venv
|
131 |
+
env/
|
132 |
+
venv/
|
133 |
+
ENV/
|
134 |
+
env.bak/
|
135 |
+
venv.bak/
|
136 |
+
|
137 |
+
# Spyder project settings
|
138 |
+
.spyderproject
|
139 |
+
.spyproject
|
140 |
+
|
141 |
+
# Rope project settings
|
142 |
+
.ropeproject
|
143 |
+
|
144 |
+
# mkdocs documentation
|
145 |
+
/site
|
146 |
+
|
147 |
+
# mypy
|
148 |
+
.mypy_cache/
|
149 |
+
.dmypy.json
|
150 |
+
dmypy.json
|
151 |
+
|
152 |
+
# Pyre type checker
|
153 |
+
.pyre/
|
154 |
+
|
155 |
+
# pytype static type analyzer
|
156 |
+
.pytype/
|
157 |
+
|
158 |
+
# Cython debug symbols
|
159 |
+
cython_debug/
|
160 |
+
|
161 |
+
# PyCharm
|
162 |
+
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
|
163 |
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
164 |
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
165 |
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
166 |
+
.idea/
|
LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) 2023 SociallyIneptWeeb
|
4 |
+
|
5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
+
of this software and associated documentation files (the "Software"), to deal
|
7 |
+
in the Software without restriction, including without limitation the rights
|
8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9 |
+
copies of the Software, and to permit persons to whom the Software is
|
10 |
+
furnished to do so, subject to the following conditions:
|
11 |
+
|
12 |
+
The above copyright notice and this permission notice shall be included in all
|
13 |
+
copies or substantial portions of the Software.
|
14 |
+
|
15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21 |
+
SOFTWARE.
|
images/webui_dl_model.png
ADDED
images/webui_generate.png
ADDED
images/webui_upload_model.png
ADDED
mdxnet_models/model_data.json
ADDED
@@ -0,0 +1,340 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"0ddfc0eb5792638ad5dc27850236c246": {
|
3 |
+
"compensate": 1.035,
|
4 |
+
"mdx_dim_f_set": 2048,
|
5 |
+
"mdx_dim_t_set": 8,
|
6 |
+
"mdx_n_fft_scale_set": 6144,
|
7 |
+
"primary_stem": "Vocals"
|
8 |
+
},
|
9 |
+
"26d308f91f3423a67dc69a6d12a8793d": {
|
10 |
+
"compensate": 1.035,
|
11 |
+
"mdx_dim_f_set": 2048,
|
12 |
+
"mdx_dim_t_set": 9,
|
13 |
+
"mdx_n_fft_scale_set": 8192,
|
14 |
+
"primary_stem": "Other"
|
15 |
+
},
|
16 |
+
"2cdd429caac38f0194b133884160f2c6": {
|
17 |
+
"compensate": 1.045,
|
18 |
+
"mdx_dim_f_set": 3072,
|
19 |
+
"mdx_dim_t_set": 8,
|
20 |
+
"mdx_n_fft_scale_set": 7680,
|
21 |
+
"primary_stem": "Instrumental"
|
22 |
+
},
|
23 |
+
"2f5501189a2f6db6349916fabe8c90de": {
|
24 |
+
"compensate": 1.035,
|
25 |
+
"mdx_dim_f_set": 2048,
|
26 |
+
"mdx_dim_t_set": 8,
|
27 |
+
"mdx_n_fft_scale_set": 6144,
|
28 |
+
"primary_stem": "Vocals"
|
29 |
+
},
|
30 |
+
"398580b6d5d973af3120df54cee6759d": {
|
31 |
+
"compensate": 1.75,
|
32 |
+
"mdx_dim_f_set": 3072,
|
33 |
+
"mdx_dim_t_set": 8,
|
34 |
+
"mdx_n_fft_scale_set": 7680,
|
35 |
+
"primary_stem": "Vocals"
|
36 |
+
},
|
37 |
+
"488b3e6f8bd3717d9d7c428476be2d75": {
|
38 |
+
"compensate": 1.035,
|
39 |
+
"mdx_dim_f_set": 3072,
|
40 |
+
"mdx_dim_t_set": 8,
|
41 |
+
"mdx_n_fft_scale_set": 7680,
|
42 |
+
"primary_stem": "Instrumental"
|
43 |
+
},
|
44 |
+
"4910e7827f335048bdac11fa967772f9": {
|
45 |
+
"compensate": 1.035,
|
46 |
+
"mdx_dim_f_set": 2048,
|
47 |
+
"mdx_dim_t_set": 7,
|
48 |
+
"mdx_n_fft_scale_set": 4096,
|
49 |
+
"primary_stem": "Drums"
|
50 |
+
},
|
51 |
+
"53c4baf4d12c3e6c3831bb8f5b532b93": {
|
52 |
+
"compensate": 1.043,
|
53 |
+
"mdx_dim_f_set": 3072,
|
54 |
+
"mdx_dim_t_set": 8,
|
55 |
+
"mdx_n_fft_scale_set": 7680,
|
56 |
+
"primary_stem": "Vocals"
|
57 |
+
},
|
58 |
+
"5d343409ef0df48c7d78cce9f0106781": {
|
59 |
+
"compensate": 1.075,
|
60 |
+
"mdx_dim_f_set": 3072,
|
61 |
+
"mdx_dim_t_set": 8,
|
62 |
+
"mdx_n_fft_scale_set": 7680,
|
63 |
+
"primary_stem": "Vocals"
|
64 |
+
},
|
65 |
+
"5f6483271e1efb9bfb59e4a3e6d4d098": {
|
66 |
+
"compensate": 1.035,
|
67 |
+
"mdx_dim_f_set": 2048,
|
68 |
+
"mdx_dim_t_set": 9,
|
69 |
+
"mdx_n_fft_scale_set": 6144,
|
70 |
+
"primary_stem": "Vocals"
|
71 |
+
},
|
72 |
+
"65ab5919372a128e4167f5e01a8fda85": {
|
73 |
+
"compensate": 1.035,
|
74 |
+
"mdx_dim_f_set": 2048,
|
75 |
+
"mdx_dim_t_set": 8,
|
76 |
+
"mdx_n_fft_scale_set": 8192,
|
77 |
+
"primary_stem": "Other"
|
78 |
+
},
|
79 |
+
"6703e39f36f18aa7855ee1047765621d": {
|
80 |
+
"compensate": 1.035,
|
81 |
+
"mdx_dim_f_set": 2048,
|
82 |
+
"mdx_dim_t_set": 9,
|
83 |
+
"mdx_n_fft_scale_set": 16384,
|
84 |
+
"primary_stem": "Bass"
|
85 |
+
},
|
86 |
+
"6b31de20e84392859a3d09d43f089515": {
|
87 |
+
"compensate": 1.035,
|
88 |
+
"mdx_dim_f_set": 2048,
|
89 |
+
"mdx_dim_t_set": 8,
|
90 |
+
"mdx_n_fft_scale_set": 6144,
|
91 |
+
"primary_stem": "Vocals"
|
92 |
+
},
|
93 |
+
"867595e9de46f6ab699008295df62798": {
|
94 |
+
"compensate": 1.03,
|
95 |
+
"mdx_dim_f_set": 3072,
|
96 |
+
"mdx_dim_t_set": 8,
|
97 |
+
"mdx_n_fft_scale_set": 7680,
|
98 |
+
"primary_stem": "Vocals"
|
99 |
+
},
|
100 |
+
"a3cd63058945e777505c01d2507daf37": {
|
101 |
+
"compensate": 1.03,
|
102 |
+
"mdx_dim_f_set": 2048,
|
103 |
+
"mdx_dim_t_set": 8,
|
104 |
+
"mdx_n_fft_scale_set": 6144,
|
105 |
+
"primary_stem": "Vocals"
|
106 |
+
},
|
107 |
+
"b33d9b3950b6cbf5fe90a32608924700": {
|
108 |
+
"compensate": 1.03,
|
109 |
+
"mdx_dim_f_set": 3072,
|
110 |
+
"mdx_dim_t_set": 8,
|
111 |
+
"mdx_n_fft_scale_set": 7680,
|
112 |
+
"primary_stem": "Vocals"
|
113 |
+
},
|
114 |
+
"c3b29bdce8c4fa17ec609e16220330ab": {
|
115 |
+
"compensate": 1.035,
|
116 |
+
"mdx_dim_f_set": 2048,
|
117 |
+
"mdx_dim_t_set": 8,
|
118 |
+
"mdx_n_fft_scale_set": 16384,
|
119 |
+
"primary_stem": "Bass"
|
120 |
+
},
|
121 |
+
"ceed671467c1f64ebdfac8a2490d0d52": {
|
122 |
+
"compensate": 1.035,
|
123 |
+
"mdx_dim_f_set": 3072,
|
124 |
+
"mdx_dim_t_set": 8,
|
125 |
+
"mdx_n_fft_scale_set": 7680,
|
126 |
+
"primary_stem": "Instrumental"
|
127 |
+
},
|
128 |
+
"d2a1376f310e4f7fa37fb9b5774eb701": {
|
129 |
+
"compensate": 1.035,
|
130 |
+
"mdx_dim_f_set": 3072,
|
131 |
+
"mdx_dim_t_set": 8,
|
132 |
+
"mdx_n_fft_scale_set": 7680,
|
133 |
+
"primary_stem": "Instrumental"
|
134 |
+
},
|
135 |
+
"d7bff498db9324db933d913388cba6be": {
|
136 |
+
"compensate": 1.035,
|
137 |
+
"mdx_dim_f_set": 2048,
|
138 |
+
"mdx_dim_t_set": 8,
|
139 |
+
"mdx_n_fft_scale_set": 6144,
|
140 |
+
"primary_stem": "Vocals"
|
141 |
+
},
|
142 |
+
"d94058f8c7f1fae4164868ae8ae66b20": {
|
143 |
+
"compensate": 1.035,
|
144 |
+
"mdx_dim_f_set": 2048,
|
145 |
+
"mdx_dim_t_set": 8,
|
146 |
+
"mdx_n_fft_scale_set": 6144,
|
147 |
+
"primary_stem": "Vocals"
|
148 |
+
},
|
149 |
+
"dc41ede5961d50f277eb846db17f5319": {
|
150 |
+
"compensate": 1.035,
|
151 |
+
"mdx_dim_f_set": 2048,
|
152 |
+
"mdx_dim_t_set": 9,
|
153 |
+
"mdx_n_fft_scale_set": 4096,
|
154 |
+
"primary_stem": "Drums"
|
155 |
+
},
|
156 |
+
"e5572e58abf111f80d8241d2e44e7fa4": {
|
157 |
+
"compensate": 1.028,
|
158 |
+
"mdx_dim_f_set": 3072,
|
159 |
+
"mdx_dim_t_set": 8,
|
160 |
+
"mdx_n_fft_scale_set": 7680,
|
161 |
+
"primary_stem": "Instrumental"
|
162 |
+
},
|
163 |
+
"e7324c873b1f615c35c1967f912db92a": {
|
164 |
+
"compensate": 1.03,
|
165 |
+
"mdx_dim_f_set": 3072,
|
166 |
+
"mdx_dim_t_set": 8,
|
167 |
+
"mdx_n_fft_scale_set": 7680,
|
168 |
+
"primary_stem": "Vocals"
|
169 |
+
},
|
170 |
+
"1c56ec0224f1d559c42fd6fd2a67b154": {
|
171 |
+
"compensate": 1.025,
|
172 |
+
"mdx_dim_f_set": 2048,
|
173 |
+
"mdx_dim_t_set": 8,
|
174 |
+
"mdx_n_fft_scale_set": 5120,
|
175 |
+
"primary_stem": "Instrumental"
|
176 |
+
},
|
177 |
+
"f2df6d6863d8f435436d8b561594ff49": {
|
178 |
+
"compensate": 1.035,
|
179 |
+
"mdx_dim_f_set": 3072,
|
180 |
+
"mdx_dim_t_set": 8,
|
181 |
+
"mdx_n_fft_scale_set": 7680,
|
182 |
+
"primary_stem": "Instrumental"
|
183 |
+
},
|
184 |
+
"b06327a00d5e5fbc7d96e1781bbdb596": {
|
185 |
+
"compensate": 1.035,
|
186 |
+
"mdx_dim_f_set": 3072,
|
187 |
+
"mdx_dim_t_set": 8,
|
188 |
+
"mdx_n_fft_scale_set": 6144,
|
189 |
+
"primary_stem": "Instrumental"
|
190 |
+
},
|
191 |
+
"94ff780b977d3ca07c7a343dab2e25dd": {
|
192 |
+
"compensate": 1.039,
|
193 |
+
"mdx_dim_f_set": 3072,
|
194 |
+
"mdx_dim_t_set": 8,
|
195 |
+
"mdx_n_fft_scale_set": 6144,
|
196 |
+
"primary_stem": "Instrumental"
|
197 |
+
},
|
198 |
+
"73492b58195c3b52d34590d5474452f6": {
|
199 |
+
"compensate": 1.043,
|
200 |
+
"mdx_dim_f_set": 3072,
|
201 |
+
"mdx_dim_t_set": 8,
|
202 |
+
"mdx_n_fft_scale_set": 7680,
|
203 |
+
"primary_stem": "Vocals"
|
204 |
+
},
|
205 |
+
"970b3f9492014d18fefeedfe4773cb42": {
|
206 |
+
"compensate": 1.009,
|
207 |
+
"mdx_dim_f_set": 3072,
|
208 |
+
"mdx_dim_t_set": 8,
|
209 |
+
"mdx_n_fft_scale_set": 7680,
|
210 |
+
"primary_stem": "Vocals"
|
211 |
+
},
|
212 |
+
"1d64a6d2c30f709b8c9b4ce1366d96ee": {
|
213 |
+
"compensate": 1.035,
|
214 |
+
"mdx_dim_f_set": 2048,
|
215 |
+
"mdx_dim_t_set": 8,
|
216 |
+
"mdx_n_fft_scale_set": 5120,
|
217 |
+
"primary_stem": "Instrumental"
|
218 |
+
},
|
219 |
+
"203f2a3955221b64df85a41af87cf8f0": {
|
220 |
+
"compensate": 1.035,
|
221 |
+
"mdx_dim_f_set": 3072,
|
222 |
+
"mdx_dim_t_set": 8,
|
223 |
+
"mdx_n_fft_scale_set": 6144,
|
224 |
+
"primary_stem": "Instrumental"
|
225 |
+
},
|
226 |
+
"291c2049608edb52648b96e27eb80e95": {
|
227 |
+
"compensate": 1.035,
|
228 |
+
"mdx_dim_f_set": 3072,
|
229 |
+
"mdx_dim_t_set": 8,
|
230 |
+
"mdx_n_fft_scale_set": 6144,
|
231 |
+
"primary_stem": "Instrumental"
|
232 |
+
},
|
233 |
+
"ead8d05dab12ec571d67549b3aab03fc": {
|
234 |
+
"compensate": 1.035,
|
235 |
+
"mdx_dim_f_set": 3072,
|
236 |
+
"mdx_dim_t_set": 8,
|
237 |
+
"mdx_n_fft_scale_set": 6144,
|
238 |
+
"primary_stem": "Instrumental"
|
239 |
+
},
|
240 |
+
"cc63408db3d80b4d85b0287d1d7c9632": {
|
241 |
+
"compensate": 1.033,
|
242 |
+
"mdx_dim_f_set": 3072,
|
243 |
+
"mdx_dim_t_set": 8,
|
244 |
+
"mdx_n_fft_scale_set": 6144,
|
245 |
+
"primary_stem": "Instrumental"
|
246 |
+
},
|
247 |
+
"cd5b2989ad863f116c855db1dfe24e39": {
|
248 |
+
"compensate": 1.035,
|
249 |
+
"mdx_dim_f_set": 3072,
|
250 |
+
"mdx_dim_t_set": 9,
|
251 |
+
"mdx_n_fft_scale_set": 6144,
|
252 |
+
"primary_stem": "Other"
|
253 |
+
},
|
254 |
+
"55657dd70583b0fedfba5f67df11d711": {
|
255 |
+
"compensate": 1.022,
|
256 |
+
"mdx_dim_f_set": 3072,
|
257 |
+
"mdx_dim_t_set": 8,
|
258 |
+
"mdx_n_fft_scale_set": 6144,
|
259 |
+
"primary_stem": "Instrumental"
|
260 |
+
},
|
261 |
+
"b6bccda408a436db8500083ef3491e8b": {
|
262 |
+
"compensate": 1.02,
|
263 |
+
"mdx_dim_f_set": 3072,
|
264 |
+
"mdx_dim_t_set": 8,
|
265 |
+
"mdx_n_fft_scale_set": 7680,
|
266 |
+
"primary_stem": "Instrumental"
|
267 |
+
},
|
268 |
+
"8a88db95c7fb5dbe6a095ff2ffb428b1": {
|
269 |
+
"compensate": 1.026,
|
270 |
+
"mdx_dim_f_set": 2048,
|
271 |
+
"mdx_dim_t_set": 8,
|
272 |
+
"mdx_n_fft_scale_set": 5120,
|
273 |
+
"primary_stem": "Instrumental"
|
274 |
+
},
|
275 |
+
"b78da4afc6512f98e4756f5977f5c6b9": {
|
276 |
+
"compensate": 1.021,
|
277 |
+
"mdx_dim_f_set": 3072,
|
278 |
+
"mdx_dim_t_set": 8,
|
279 |
+
"mdx_n_fft_scale_set": 7680,
|
280 |
+
"primary_stem": "Instrumental"
|
281 |
+
},
|
282 |
+
"77d07b2667ddf05b9e3175941b4454a0": {
|
283 |
+
"compensate": 1.021,
|
284 |
+
"mdx_dim_f_set": 3072,
|
285 |
+
"mdx_dim_t_set": 8,
|
286 |
+
"mdx_n_fft_scale_set": 7680,
|
287 |
+
"primary_stem": "Vocals"
|
288 |
+
},
|
289 |
+
"2154254ee89b2945b97a7efed6e88820": {
|
290 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
291 |
+
},
|
292 |
+
"063aadd735d58150722926dcbf5852a9": {
|
293 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
294 |
+
},
|
295 |
+
"fe96801369f6a148df2720f5ced88c19": {
|
296 |
+
"config_yaml": "model3.yaml"
|
297 |
+
},
|
298 |
+
"02e8b226f85fb566e5db894b9931c640": {
|
299 |
+
"config_yaml": "model2.yaml"
|
300 |
+
},
|
301 |
+
"e3de6d861635ab9c1d766149edd680d6": {
|
302 |
+
"config_yaml": "model1.yaml"
|
303 |
+
},
|
304 |
+
"3f2936c554ab73ce2e396d54636bd373": {
|
305 |
+
"config_yaml": "modelB.yaml"
|
306 |
+
},
|
307 |
+
"890d0f6f82d7574bca741a9e8bcb8168": {
|
308 |
+
"config_yaml": "modelB.yaml"
|
309 |
+
},
|
310 |
+
"63a3cb8c37c474681049be4ad1ba8815": {
|
311 |
+
"config_yaml": "modelB.yaml"
|
312 |
+
},
|
313 |
+
"a7fc5d719743c7fd6b61bd2b4d48b9f0": {
|
314 |
+
"config_yaml": "modelA.yaml"
|
315 |
+
},
|
316 |
+
"3567f3dee6e77bf366fcb1c7b8bc3745": {
|
317 |
+
"config_yaml": "modelA.yaml"
|
318 |
+
},
|
319 |
+
"a28f4d717bd0d34cd2ff7a3b0a3d065e": {
|
320 |
+
"config_yaml": "modelA.yaml"
|
321 |
+
},
|
322 |
+
"c9971a18da20911822593dc81caa8be9": {
|
323 |
+
"config_yaml": "sndfx.yaml"
|
324 |
+
},
|
325 |
+
"57d94d5ed705460d21c75a5ac829a605": {
|
326 |
+
"config_yaml": "sndfx.yaml"
|
327 |
+
},
|
328 |
+
"e7a25f8764f25a52c1b96c4946e66ba2": {
|
329 |
+
"config_yaml": "sndfx.yaml"
|
330 |
+
},
|
331 |
+
"104081d24e37217086ce5fde09147ee1": {
|
332 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
333 |
+
},
|
334 |
+
"1e6165b601539f38d0a9330f3facffeb": {
|
335 |
+
"config_yaml": "model_2_stem_061321.yaml"
|
336 |
+
},
|
337 |
+
"fe0108464ce0d8271be5ab810891bd7c": {
|
338 |
+
"config_yaml": "model_2_stem_full_band.yaml"
|
339 |
+
}
|
340 |
+
}
|
requirements.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
deemix
|
2 |
+
fairseq==0.12.2
|
3 |
+
faiss-cpu==1.7.3
|
4 |
+
ffmpeg-python>=0.2.0
|
5 |
+
gradio==3.39.0
|
6 |
+
lib==4.0.0
|
7 |
+
librosa==0.9.1
|
8 |
+
numpy==1.23.5
|
9 |
+
onnxruntime_gpu
|
10 |
+
praat-parselmouth>=0.4.2
|
11 |
+
pedalboard==0.7.7
|
12 |
+
pydub==0.25.1
|
13 |
+
pyworld==0.3.4
|
14 |
+
Requests==2.31.0
|
15 |
+
scipy==1.11.1
|
16 |
+
soundfile==0.12.1
|
17 |
+
--find-links https://download.pytorch.org/whl/torch_stable.html
|
18 |
+
torch==2.0.1+cu118
|
19 |
+
torchcrepe==0.0.20
|
20 |
+
tqdm==4.65.0
|
21 |
+
yt_dlp==2023.7.6
|
22 |
+
sox==1.4.1
|
rvc_models/MODELS.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
RVC Models can be added as a folder here. Each folder should contain the model file (.pth extension), and an index file (.index extension).
|
2 |
+
For example, a folder called Maya, containing 2 files, Maya.pth and added_IVF1905_Flat_nprobe_Maya_v2.index.
|
rvc_models/public_models.json
ADDED
@@ -0,0 +1,626 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"tags": {
|
3 |
+
"English": "Character speaks English",
|
4 |
+
"Japanese": "Character speaks Japanese",
|
5 |
+
"Other Language": "The character speaks Other Language",
|
6 |
+
"Anime": "Character from anime",
|
7 |
+
"Vtuber": "Character is a vtuber",
|
8 |
+
"Real person": "A person who exists in the real world",
|
9 |
+
"Game character": "A character from the game"
|
10 |
+
},
|
11 |
+
"voice_models": [
|
12 |
+
{
|
13 |
+
"name": "Emilia",
|
14 |
+
"url": "https://huggingface.co/RinkaEmina/RVC_Sharing/resolve/main/Emilia%20V2%2048000.zip",
|
15 |
+
"description": "Emilia from Re:Zero",
|
16 |
+
"added": "2023-07-31",
|
17 |
+
"credit": "rinka4759",
|
18 |
+
"tags": [
|
19 |
+
"Anime"
|
20 |
+
]
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"name": "Klee",
|
24 |
+
"url": "https://huggingface.co/qweshkka/Klee/resolve/main/Klee.zip",
|
25 |
+
"description": "Klee from Genshin Impact",
|
26 |
+
"added": "2023-07-31",
|
27 |
+
"credit": "qweshsmashjuicefruity",
|
28 |
+
"tags": [
|
29 |
+
"Game character",
|
30 |
+
"Japanese"
|
31 |
+
]
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"name": "Yelan",
|
35 |
+
"url": "https://huggingface.co/iroaK/RVC2_Yelan_GenshinImpact/resolve/main/YelanJP.zip",
|
36 |
+
"description": "Yelan from Genshin Impact",
|
37 |
+
"added": "2023-07-31",
|
38 |
+
"credit": "iroak",
|
39 |
+
"tags": [
|
40 |
+
"Game character",
|
41 |
+
"Japanese"
|
42 |
+
]
|
43 |
+
},
|
44 |
+
{
|
45 |
+
"name": "Yae Miko",
|
46 |
+
"url": "https://huggingface.co/iroaK/RVC2_YaeMiko_GenshinImpact/resolve/main/Yae_MikoJP.zip",
|
47 |
+
"description": "Yae Miko from Genshin Impact",
|
48 |
+
"added": "2023-07-31",
|
49 |
+
"credit": "iroak",
|
50 |
+
"tags": [
|
51 |
+
"Game character",
|
52 |
+
"Japanese"
|
53 |
+
]
|
54 |
+
},
|
55 |
+
{
|
56 |
+
"name": "Lisa",
|
57 |
+
"url": "https://huggingface.co/qweshkka/Lisa2ver/resolve/main/Lisa.zip",
|
58 |
+
"description": "Lisa from Genshin Impact",
|
59 |
+
"added": "2023-07-31",
|
60 |
+
"credit": "qweshsmashjuicefruity",
|
61 |
+
"tags": [
|
62 |
+
"Game character",
|
63 |
+
"English"
|
64 |
+
]
|
65 |
+
},
|
66 |
+
{
|
67 |
+
"name": "Kazuha",
|
68 |
+
"url": "https://huggingface.co/iroaK/RVC2_Kazuha_GenshinImpact/resolve/main/Kazuha.zip",
|
69 |
+
"description": "Kaedehara Kazuha from Genshin Impact",
|
70 |
+
"added": "2023-07-31",
|
71 |
+
"credit": "iroak",
|
72 |
+
"tags": [
|
73 |
+
"Game character",
|
74 |
+
"Japanese"
|
75 |
+
]
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"name": "Barbara",
|
79 |
+
"url": "https://huggingface.co/iroaK/RVC2_Barbara_GenshinImpact/resolve/main/BarbaraJP.zip",
|
80 |
+
"description": "Barbara from Genshin Impact",
|
81 |
+
"added": "2023-07-31",
|
82 |
+
"credit": "iroak",
|
83 |
+
"tags": [
|
84 |
+
"Game character",
|
85 |
+
"Japanese"
|
86 |
+
]
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"name": "Tom Holland",
|
90 |
+
"url": "https://huggingface.co/TJKAI/TomHolland/resolve/main/TomHolland.zip",
|
91 |
+
"description": "Tom Holland (Spider-Man)",
|
92 |
+
"added": "2023-08-03",
|
93 |
+
"credit": "tjkcreative",
|
94 |
+
"tags": [
|
95 |
+
"Real person",
|
96 |
+
"English"
|
97 |
+
]
|
98 |
+
},
|
99 |
+
{
|
100 |
+
"name": "Kamisato Ayaka",
|
101 |
+
"url": "https://huggingface.co/benitheworld/ayaka-cn/resolve/main/ayaka-cn.zip",
|
102 |
+
"description": "Kamisato Ayaka from Genshin Impact - CN voice actor",
|
103 |
+
"added": "2023-08-03",
|
104 |
+
"credit": "kannysoap",
|
105 |
+
"tags": [
|
106 |
+
"Game character",
|
107 |
+
"Other Language"
|
108 |
+
]
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"name": "Amai Odayaka",
|
112 |
+
"url": "https://huggingface.co/NoIdea4Username/NoIdeaRVCCollection/resolve/main/Amai-Odayaka.zip",
|
113 |
+
"description": "Amai Odayaka from Yandere Simulator",
|
114 |
+
"added": "2023-08-03",
|
115 |
+
"credit": "minecraftian47",
|
116 |
+
"tags": [
|
117 |
+
"Anime",
|
118 |
+
"English"
|
119 |
+
]
|
120 |
+
},
|
121 |
+
{
|
122 |
+
"name": "Compa - Hyperdimension Neptunia",
|
123 |
+
"url": "https://huggingface.co/zeerowiibu/WiibuRVCCollection/resolve/main/Compa%20(Choujigen%20Game%20Neptunia)%20(JPN)%20(RVC%20v2)%20(150%20Epochs).zip",
|
124 |
+
"description": "Compa from Choujigen Game Neptune (aka Hyperdimension Neptunia)",
|
125 |
+
"added": "2023-08-03",
|
126 |
+
"credit": "zeerowiibu",
|
127 |
+
"tags": [
|
128 |
+
"Anime",
|
129 |
+
"Japanese"
|
130 |
+
]
|
131 |
+
},
|
132 |
+
{
|
133 |
+
"name": "Fu Xuan",
|
134 |
+
"url": "https://huggingface.co/Juneuarie/FuXuan/resolve/main/FuXuan.zip",
|
135 |
+
"description": "Fu Xuan from Honkai Star Rail (HSR)",
|
136 |
+
"added": "2023-08-03",
|
137 |
+
"credit": "__june",
|
138 |
+
"tags": [
|
139 |
+
"Game character",
|
140 |
+
"English"
|
141 |
+
]
|
142 |
+
},
|
143 |
+
{
|
144 |
+
"name": "Xinyan",
|
145 |
+
"url": "https://huggingface.co/AnimeSessions/rvc_voice_models/resolve/main/XinyanRVC.zip",
|
146 |
+
"description": "Xinyan from Genshin Impact",
|
147 |
+
"added": "2023-08-03",
|
148 |
+
"credit": "shyelijah",
|
149 |
+
"tags": [
|
150 |
+
"Game character",
|
151 |
+
"English"
|
152 |
+
]
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"name": "Enterprise",
|
156 |
+
"url": "https://huggingface.co/NoIdea4Username/NoIdeaRVCCollection/resolve/main/Enterprise-JP.zip",
|
157 |
+
"description": "Enterprise from Azur Lane",
|
158 |
+
"added": "2023-08-03",
|
159 |
+
"credit": "minecraftian47",
|
160 |
+
"tags": [
|
161 |
+
"Anime",
|
162 |
+
"Japanese"
|
163 |
+
]
|
164 |
+
},
|
165 |
+
{
|
166 |
+
"name": "Kurt Cobain",
|
167 |
+
"url": "https://huggingface.co/Florstie/Kurt_Cobain_byFlorst/resolve/main/Kurt_Florst.zip",
|
168 |
+
"description": "singer Kurt Cobain",
|
169 |
+
"added": "2023-08-03",
|
170 |
+
"credit": "florst",
|
171 |
+
"tags": [
|
172 |
+
"Real person",
|
173 |
+
"English"
|
174 |
+
]
|
175 |
+
},
|
176 |
+
{
|
177 |
+
"name": "Ironmouse",
|
178 |
+
"url": "https://huggingface.co/Tempo-Hawk/IronmouseV2/resolve/main/IronmouseV2.zip",
|
179 |
+
"description": "Ironmouse",
|
180 |
+
"added": "2023-08-03",
|
181 |
+
"credit": "ladyimpa",
|
182 |
+
"tags": [
|
183 |
+
"Vtuber",
|
184 |
+
"English"
|
185 |
+
]
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"name": "Bratishkinoff",
|
189 |
+
"url": "https://huggingface.co/JHmashups/Bratishkinoff/resolve/main/bratishkin.zip",
|
190 |
+
"description": "Bratishkinoff (Bratishkin | Братишкин) - russian steamer ",
|
191 |
+
"added": "2023-08-03",
|
192 |
+
"credit": ".caddii",
|
193 |
+
"tags": [
|
194 |
+
"Real person",
|
195 |
+
"Other Language"
|
196 |
+
]
|
197 |
+
},
|
198 |
+
{
|
199 |
+
"name": "Yagami Light",
|
200 |
+
"url": "https://huggingface.co/geekdom-tr/Yagami-Light/resolve/main/Yagami-Light.zip",
|
201 |
+
"description": "Yagami Light (Miyano Mamoru) from death note",
|
202 |
+
"added": "2023-08-03",
|
203 |
+
"credit": "takka / takka#7700",
|
204 |
+
"tags": [
|
205 |
+
"Anime",
|
206 |
+
"Japanese"
|
207 |
+
]
|
208 |
+
},
|
209 |
+
{
|
210 |
+
"name": "Itashi",
|
211 |
+
"url": "https://huggingface.co/4uGGun/4uGGunRVC/resolve/main/itashi.zip",
|
212 |
+
"description": "Itashi (Russian fandubber AniLibria) ",
|
213 |
+
"added": "2023-08-03",
|
214 |
+
"credit": "BelochkaOff",
|
215 |
+
"tags": [
|
216 |
+
"Anime",
|
217 |
+
"Other Language",
|
218 |
+
"Real person"
|
219 |
+
]
|
220 |
+
},
|
221 |
+
{
|
222 |
+
"name": "Michiru Kagemori",
|
223 |
+
"url": "https://huggingface.co/WolfMK/MichiruKagemori/resolve/main/MichiruKagemori_RVC_V2.zip",
|
224 |
+
"description": "Michiru Kagemori from Brand New Animal (300 Epochs)",
|
225 |
+
"added": "2023-08-03",
|
226 |
+
"credit": "wolfmk",
|
227 |
+
"tags": [
|
228 |
+
"Anime",
|
229 |
+
"English"
|
230 |
+
]
|
231 |
+
}
|
232 |
+
,
|
233 |
+
{
|
234 |
+
"name": "Kaeya",
|
235 |
+
"url": "https://huggingface.co/nlordqting4444/nlordqtingRVC/resolve/main/Kaeya.zip",
|
236 |
+
"description": "Kaeya (VA: Kohsuke Toriumi) from Genshin Impact (300 Epochs)",
|
237 |
+
"added": "2023-08-03",
|
238 |
+
"credit": "nlordqting4444",
|
239 |
+
"tags": [
|
240 |
+
"Game character",
|
241 |
+
"Japanese"
|
242 |
+
]
|
243 |
+
},
|
244 |
+
{
|
245 |
+
"name": "Mona Megistus",
|
246 |
+
"url": "https://huggingface.co/AnimeSessions/rvc_voice_models/resolve/main/MonaRVC.zip",
|
247 |
+
"description": "Mona Megistus (VA: Felecia Angelle) from Genshin Impact (250 Epochs)",
|
248 |
+
"added": "2023-08-03",
|
249 |
+
"credit": "shyelijah",
|
250 |
+
"tags": [
|
251 |
+
"Game character",
|
252 |
+
"English"
|
253 |
+
]
|
254 |
+
},
|
255 |
+
{
|
256 |
+
"name": "Klee",
|
257 |
+
"url": "https://huggingface.co/hardbop/AI_MODEL_THINGY/resolve/main/kleeeng_rvc.zip",
|
258 |
+
"description": "Klee from Genshin Impact (400 Epochs)",
|
259 |
+
"added": "2023-08-03",
|
260 |
+
"credit": "hardbop",
|
261 |
+
"tags": [
|
262 |
+
"Game character",
|
263 |
+
"English"
|
264 |
+
]
|
265 |
+
},
|
266 |
+
{
|
267 |
+
"name": "Sakurakoji Kinako",
|
268 |
+
"url": "https://huggingface.co/Gorodogi/RVC2MangioCrepe/resolve/main/kinakobetatwo700.zip",
|
269 |
+
"description": "Sakurakoji Kinako (Suzuhara Nozomi) from Love Live! Superstar!! (700 Epoch)",
|
270 |
+
"added": "2023-08-03",
|
271 |
+
"credit": "ck1089",
|
272 |
+
"tags": [
|
273 |
+
"Anime",
|
274 |
+
"Japanese"
|
275 |
+
]
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"name": "Minamo Kurosawa",
|
279 |
+
"url": "https://huggingface.co/timothy10583/RVC/resolve/main/minamo-kurosawa.zip",
|
280 |
+
"description": "Minamo (Nyamo) Kurosawa (Azumanga Daioh US DUB) (300 Epochs)",
|
281 |
+
"added": "2023-08-03",
|
282 |
+
"credit": "timothy10583",
|
283 |
+
"tags": [
|
284 |
+
"Anime"
|
285 |
+
]
|
286 |
+
},
|
287 |
+
{
|
288 |
+
"name": "Neco Arc",
|
289 |
+
"url": "https://huggingface.co/Ozzy-Helix/Neko_Arc_Neko_Aruku.RVCv2/resolve/main/Neko_Arc-V3-E600.zip",
|
290 |
+
"description": "Neco Arc (Neco-Aruku) (Epochs 600)",
|
291 |
+
"added": "2023-08-03",
|
292 |
+
"credit": "ozzy_helix_",
|
293 |
+
"tags": [
|
294 |
+
"Anime"
|
295 |
+
]
|
296 |
+
},
|
297 |
+
{
|
298 |
+
"name": "Makima",
|
299 |
+
"url": "https://huggingface.co/andolei/makimaen/resolve/main/makima-en-dub.zip",
|
300 |
+
"description": "Makima from Chainsaw Man (300 Epochs)",
|
301 |
+
"added": "2023-08-03",
|
302 |
+
"credit": "andpproximately",
|
303 |
+
"tags": [
|
304 |
+
"Anime",
|
305 |
+
"English"
|
306 |
+
]
|
307 |
+
},
|
308 |
+
{
|
309 |
+
"name": "PomPom",
|
310 |
+
"url": "https://huggingface.co/benitheworld/pom-pom/resolve/main/pom-pom.zip",
|
311 |
+
"description": "PomPom from Honkai Star Rail (HSR) (200 Epochs)",
|
312 |
+
"added": "2023-08-03",
|
313 |
+
"credit": "kannysoap",
|
314 |
+
"tags": [
|
315 |
+
"Game character",
|
316 |
+
"English"
|
317 |
+
]
|
318 |
+
},
|
319 |
+
{
|
320 |
+
"name": "Asuka Langley Soryu",
|
321 |
+
"url": "https://huggingface.co/Piegirl/asukaadv/resolve/main/asuka.zip",
|
322 |
+
"description": "Asuka Langley Soryu/Tiffany Grant from Neon Genesis Evangelion (400 Epochs)",
|
323 |
+
"added": "2023-08-03",
|
324 |
+
"credit": "piegirl",
|
325 |
+
"tags": [
|
326 |
+
"Anime",
|
327 |
+
"English"
|
328 |
+
]
|
329 |
+
},
|
330 |
+
{
|
331 |
+
"name": "Ochaco Uraraka",
|
332 |
+
"url": "https://huggingface.co/legitdark/JP-Uraraka-By-Dan/resolve/main/JP-Uraraka-By-Dan.zip",
|
333 |
+
"description": "Ochaco Uraraka from Boku no Hero Academia (320 Epochs)",
|
334 |
+
"added": "2023-08-03",
|
335 |
+
"credit": "danthevegetable",
|
336 |
+
"tags": [
|
337 |
+
"Anime",
|
338 |
+
"Japanese"
|
339 |
+
]
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"name": "Sunaokami Shiroko",
|
343 |
+
"url": "https://huggingface.co/LordDavis778/BlueArchivevoicemodels/resolve/main/SunaokamiShiroko.zip",
|
344 |
+
"description": "Sunaokami Shiroko from Blue Archive (500 Epochs)",
|
345 |
+
"added": "2023-08-03",
|
346 |
+
"credit": "lorddavis778",
|
347 |
+
"tags": [
|
348 |
+
"Anime"
|
349 |
+
]
|
350 |
+
},
|
351 |
+
{
|
352 |
+
"name": "Dainsleif",
|
353 |
+
"url": "https://huggingface.co/Nasleyy/NasleyRVC/resolve/main/Voices/Dainsleif/Dainsleif.zip",
|
354 |
+
"description": "Dainsleif from Genshin Impact (335 Epochs)",
|
355 |
+
"added": "2023-08-03",
|
356 |
+
"credit": "nasley",
|
357 |
+
"tags": [
|
358 |
+
"Game character",
|
359 |
+
"English"
|
360 |
+
]
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"name": "Mae Asmr",
|
364 |
+
"url": "https://huggingface.co/ctian/VRC/resolve/main/MaeASMR.zip",
|
365 |
+
"description": "Mae Asmr - harvest mommy voice (YOUTUBE) (300 Epochs)",
|
366 |
+
"added": "2023-08-03",
|
367 |
+
"credit": "ctian_04",
|
368 |
+
"tags": [
|
369 |
+
"English",
|
370 |
+
"Real person",
|
371 |
+
"Vtuber"
|
372 |
+
]
|
373 |
+
},
|
374 |
+
{
|
375 |
+
"name": "Hana Shirosaki ",
|
376 |
+
"url": "https://huggingface.co/Pawlik17/HanaWataten/resolve/main/HanaWATATEN.zip",
|
377 |
+
"description": "Hana Shirosaki / 白 咲 花 From Watashi ni Tenshi ga Maiorita! (570 Epochs)",
|
378 |
+
"added": "2023-08-03",
|
379 |
+
"credit": "tamalik",
|
380 |
+
"tags": [
|
381 |
+
"Anime",
|
382 |
+
"Japanese"
|
383 |
+
]
|
384 |
+
},
|
385 |
+
{
|
386 |
+
"name": "Kaguya Shinomiya ",
|
387 |
+
"url": "https://huggingface.co/1ski/1skiRVCModels/resolve/main/kaguyav5.zip",
|
388 |
+
"description": "Kaguya Shinomiya from Kaguya-Sama Love is war (200 Epochs)",
|
389 |
+
"added": "2023-08-03",
|
390 |
+
"credit": "1ski",
|
391 |
+
"tags": [
|
392 |
+
"Anime",
|
393 |
+
"Japanese"
|
394 |
+
]
|
395 |
+
},
|
396 |
+
{
|
397 |
+
"name": "Nai Shiro",
|
398 |
+
"url": "https://huggingface.co/kuushiro/Shiro-RVC-No-Game-No-Life/resolve/main/shiro-jp-360-epochs.zip",
|
399 |
+
"description": "Nai Shiro (Ai Kayano) from No Game No Life (360 Epochs)",
|
400 |
+
"added": "2023-08-03",
|
401 |
+
"credit": "kxouyou",
|
402 |
+
"tags": [
|
403 |
+
"Anime",
|
404 |
+
"Japanese"
|
405 |
+
]
|
406 |
+
},
|
407 |
+
{
|
408 |
+
"name": "Yuigahama Yui",
|
409 |
+
"url": "https://huggingface.co/Zerokano/Yuigahama_Yui-RVCv2/resolve/main/Yuigahama_Yui.zip",
|
410 |
+
"description": "Yuigahama Yui from Yahari Ore no Seishun Love Comedy wa Machigatteiru (250 Epochs)",
|
411 |
+
"added": "2023-08-03",
|
412 |
+
"credit": "zerokano",
|
413 |
+
"tags": [
|
414 |
+
"Anime",
|
415 |
+
"Japanese"
|
416 |
+
]
|
417 |
+
},
|
418 |
+
{
|
419 |
+
"name": "Fuwawa Abyssgard",
|
420 |
+
"url": "https://huggingface.co/megaaziib/my-rvc-models-collection/resolve/main/fuwawa.zip",
|
421 |
+
"description": "Fuwawa Abyssgard (FUWAMOCO) from Hololive gen 3 (250 Epochs)",
|
422 |
+
"added": "2023-08-03",
|
423 |
+
"credit": "megaaziib",
|
424 |
+
"tags": [
|
425 |
+
"Vtuber",
|
426 |
+
"English"
|
427 |
+
]
|
428 |
+
},
|
429 |
+
{
|
430 |
+
"name": "Kana Arima",
|
431 |
+
"url": "https://huggingface.co/ddoumakunn/arimakanna/resolve/main/arimakanna.zip",
|
432 |
+
"description": "Kana Arima from Oshi no Ko (250 Epochs)",
|
433 |
+
"added": "2023-08-03",
|
434 |
+
"credit": "ddoumakunn",
|
435 |
+
"tags": [
|
436 |
+
"Anime",
|
437 |
+
"Japanese"
|
438 |
+
]
|
439 |
+
},
|
440 |
+
{
|
441 |
+
"name": "Raiden Shogun",
|
442 |
+
"url": "https://huggingface.co/Nasleyy/NasleyRVC/resolve/main/Voices/RaidenShogun/RaidenShogun.zip",
|
443 |
+
"description": "Raiden Shogun from Genshin Impact (310 Epochs)",
|
444 |
+
"added": "2023-08-03",
|
445 |
+
"credit": "nasley",
|
446 |
+
"tags": [
|
447 |
+
"Game character",
|
448 |
+
"English"
|
449 |
+
]
|
450 |
+
},
|
451 |
+
{
|
452 |
+
"name": "Alhaitham",
|
453 |
+
"url": "https://huggingface.co/Nasleyy/NasleyRVC/resolve/main/Voices/Alhaitham/Alhaitham.zip",
|
454 |
+
"description": "Alhaitham from Genshin Impact (320 Epochs)",
|
455 |
+
"added": "2023-08-03",
|
456 |
+
"credit": "nasley",
|
457 |
+
"tags": [
|
458 |
+
"Game character",
|
459 |
+
"English"
|
460 |
+
]
|
461 |
+
},
|
462 |
+
{
|
463 |
+
"name": "Izuku Midoriya",
|
464 |
+
"url": "https://huggingface.co/BigGuy635/MHA/resolve/main/DekuJP.zip",
|
465 |
+
"description": "Izuku Midoriya from Boku no Hero Academia (100 Epochs)",
|
466 |
+
"added": "2023-08-03",
|
467 |
+
"credit": "khjjnoffical",
|
468 |
+
"tags": [
|
469 |
+
"Anime",
|
470 |
+
"Japanese"
|
471 |
+
]
|
472 |
+
},
|
473 |
+
{
|
474 |
+
"name": "Kurumi Shiratori",
|
475 |
+
"url": "https://huggingface.co/HarunaKasuga/YoshikoTsushima/resolve/main/KurumiShiratori.zip",
|
476 |
+
"description": "Kurumi Shiratori (VA: Ruka Fukagawa) from D4DJ (500 Epochs)",
|
477 |
+
"added": "2023-08-03",
|
478 |
+
"credit": "seakrait",
|
479 |
+
"tags": [
|
480 |
+
"Anime",
|
481 |
+
"Japanese"
|
482 |
+
]
|
483 |
+
},
|
484 |
+
{
|
485 |
+
"name": "Veibae",
|
486 |
+
"url": "https://huggingface.co/datasets/Papaquans/Veibae/resolve/main/veibae_e165_s125565.zip",
|
487 |
+
"description": "Veibae (165 Epochs)",
|
488 |
+
"added": "2023-08-03",
|
489 |
+
"credit": "recairo",
|
490 |
+
"tags": [
|
491 |
+
"Vtuber",
|
492 |
+
"English"
|
493 |
+
]
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"name": "Black Panther",
|
497 |
+
"url": "https://huggingface.co/TJKAI/BlackPannther/resolve/main/BlackPanther.zip",
|
498 |
+
"description": "Black Panther (Chadwick Boseman) (300 Epochs)",
|
499 |
+
"added": "2023-08-03",
|
500 |
+
"credit": "tjkcreative",
|
501 |
+
"tags": [
|
502 |
+
"Real person",
|
503 |
+
"English"
|
504 |
+
]
|
505 |
+
},
|
506 |
+
{
|
507 |
+
"name": "Gawr Gura",
|
508 |
+
"url": "https://pixeldrain.com/u/3tJmABXA",
|
509 |
+
"description": "Gawr Gura from Hololive EN",
|
510 |
+
"added": "2023-08-05",
|
511 |
+
"credit": "dacoolkid44 & hijack",
|
512 |
+
"tags": [
|
513 |
+
"Vtuber"
|
514 |
+
]
|
515 |
+
},
|
516 |
+
{
|
517 |
+
"name": "Houshou Marine",
|
518 |
+
"url": "https://pixeldrain.com/u/L1YLfZyU",
|
519 |
+
"description": "Houshou Marine from Hololive JP",
|
520 |
+
"added": "2023-08-05",
|
521 |
+
"credit": "dacoolkid44 & hijack",
|
522 |
+
"tags": [
|
523 |
+
"Vtuber",
|
524 |
+
"Japanese"
|
525 |
+
]
|
526 |
+
},
|
527 |
+
{
|
528 |
+
"name": "Hoshimachi Suisei",
|
529 |
+
"url": "https://pixeldrain.com/u/YP89C21u",
|
530 |
+
"description": "Hoshimachi Suisei from Hololive JP",
|
531 |
+
"added": "2023-08-05",
|
532 |
+
"credit": "dacoolkid44 & hijack & Maki Ligon",
|
533 |
+
"tags": [
|
534 |
+
"Vtuber",
|
535 |
+
"Japanese"
|
536 |
+
]
|
537 |
+
},
|
538 |
+
{
|
539 |
+
"name": "Laplus Darkness",
|
540 |
+
"url": "https://pixeldrain.com/u/zmuxv5Bf",
|
541 |
+
"description": "Laplus Darkness from Hololive JP",
|
542 |
+
"added": "2023-08-05",
|
543 |
+
"credit": "dacoolkid44 & hijack",
|
544 |
+
"tags": [
|
545 |
+
"Vtuber",
|
546 |
+
"Japanese"
|
547 |
+
]
|
548 |
+
},
|
549 |
+
{
|
550 |
+
"name": "AZKi",
|
551 |
+
"url": "https://huggingface.co/Kit-Lemonfoot/kitlemonfoot_rvc_models/resolve/main/AZKi%20(Hybrid).zip",
|
552 |
+
"description": "AZKi from Hololive JP",
|
553 |
+
"added": "2023-08-05",
|
554 |
+
"credit": "Kit Lemonfoot / NSHFB",
|
555 |
+
"tags": [
|
556 |
+
"Vtuber",
|
557 |
+
"Japanese"
|
558 |
+
]
|
559 |
+
},
|
560 |
+
{
|
561 |
+
"name": "Ado",
|
562 |
+
"url": "https://huggingface.co/pjesek/AdoRVCv2/resolve/main/AdoRVCv2.zip",
|
563 |
+
"description": "Talented JP artist (500 epochs using every song from her first album)",
|
564 |
+
"added": "2023-08-05",
|
565 |
+
"credit": "pjesek",
|
566 |
+
"tags": [
|
567 |
+
"Real person",
|
568 |
+
"Japanese"
|
569 |
+
]
|
570 |
+
},
|
571 |
+
{
|
572 |
+
"name": "LiSA",
|
573 |
+
"url": "https://huggingface.co/phant0m4r/LiSA/resolve/main/LiSA.zip",
|
574 |
+
"description": "Talented JP artist (400 epochs)",
|
575 |
+
"added": "2023-08-05",
|
576 |
+
"credit": "Phant0m",
|
577 |
+
"tags": [
|
578 |
+
"Real person",
|
579 |
+
"Japanese"
|
580 |
+
]
|
581 |
+
},
|
582 |
+
{
|
583 |
+
"name": "Kokomi",
|
584 |
+
"url": "https://huggingface.co/benitheworld/kokomi-kr/resolve/main/kokomi-kr.zip",
|
585 |
+
"description": "Kokomi from Genshin Impact KR (300 Epochs)",
|
586 |
+
"added": "2023-08-09",
|
587 |
+
"credit": "kannysoap",
|
588 |
+
"tags": [
|
589 |
+
"Game character",
|
590 |
+
"Other Language"
|
591 |
+
]
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"name": "Ivanzolo",
|
595 |
+
"url": "https://huggingface.co/fenikkusugosuto/IvanZolo2004/resolve/main/ivanZolo.zip",
|
596 |
+
"description": "Ivanzolo2004 russian streamer | Иван Золо 2004",
|
597 |
+
"added": "2023-08-09",
|
598 |
+
"credit": "prezervativ_naruto2009",
|
599 |
+
"tags": [
|
600 |
+
"Other Language",
|
601 |
+
"Real person"
|
602 |
+
]
|
603 |
+
},
|
604 |
+
{
|
605 |
+
"name": "Nilou",
|
606 |
+
"url": "https://huggingface.co/benitheworld/nilou-kr/resolve/main/nilou-kr.zip",
|
607 |
+
"description": "Nilou from Genshin Impact KR (300 Epochs)",
|
608 |
+
"added": "2023-08-09",
|
609 |
+
"credit": "kannysoap",
|
610 |
+
"tags": [
|
611 |
+
"Game character",
|
612 |
+
"Other Language"
|
613 |
+
]
|
614 |
+
},
|
615 |
+
{
|
616 |
+
"name": "Dr. Doofenshmirtz",
|
617 |
+
"url": "https://huggingface.co/Argax/doofenshmirtz-RUS/resolve/main/doofenshmirtz.zip",
|
618 |
+
"description": "RUS Dr. Doofenshmirtz from Phineas and Ferb (300 epochs)",
|
619 |
+
"added": "2023-08-09",
|
620 |
+
"credit": "argaxus",
|
621 |
+
"tags": [
|
622 |
+
"Other Language"
|
623 |
+
]
|
624 |
+
}
|
625 |
+
]
|
626 |
+
}
|
song_output/OUTPUT.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Output is stored in this folder, where directory names represent the YouTube IDs from the original song.
|
src/configs/32k.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train": {
|
3 |
+
"log_interval": 200,
|
4 |
+
"seed": 1234,
|
5 |
+
"epochs": 20000,
|
6 |
+
"learning_rate": 1e-4,
|
7 |
+
"betas": [0.8, 0.99],
|
8 |
+
"eps": 1e-9,
|
9 |
+
"batch_size": 4,
|
10 |
+
"fp16_run": false,
|
11 |
+
"lr_decay": 0.999875,
|
12 |
+
"segment_size": 12800,
|
13 |
+
"init_lr_ratio": 1,
|
14 |
+
"warmup_epochs": 0,
|
15 |
+
"c_mel": 45,
|
16 |
+
"c_kl": 1.0
|
17 |
+
},
|
18 |
+
"data": {
|
19 |
+
"max_wav_value": 32768.0,
|
20 |
+
"sampling_rate": 32000,
|
21 |
+
"filter_length": 1024,
|
22 |
+
"hop_length": 320,
|
23 |
+
"win_length": 1024,
|
24 |
+
"n_mel_channels": 80,
|
25 |
+
"mel_fmin": 0.0,
|
26 |
+
"mel_fmax": null
|
27 |
+
},
|
28 |
+
"model": {
|
29 |
+
"inter_channels": 192,
|
30 |
+
"hidden_channels": 192,
|
31 |
+
"filter_channels": 768,
|
32 |
+
"n_heads": 2,
|
33 |
+
"n_layers": 6,
|
34 |
+
"kernel_size": 3,
|
35 |
+
"p_dropout": 0,
|
36 |
+
"resblock": "1",
|
37 |
+
"resblock_kernel_sizes": [3,7,11],
|
38 |
+
"resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
|
39 |
+
"upsample_rates": [10,4,2,2,2],
|
40 |
+
"upsample_initial_channel": 512,
|
41 |
+
"upsample_kernel_sizes": [16,16,4,4,4],
|
42 |
+
"use_spectral_norm": false,
|
43 |
+
"gin_channels": 256,
|
44 |
+
"spk_embed_dim": 109
|
45 |
+
}
|
46 |
+
}
|
src/configs/32k_v2.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train": {
|
3 |
+
"log_interval": 200,
|
4 |
+
"seed": 1234,
|
5 |
+
"epochs": 20000,
|
6 |
+
"learning_rate": 1e-4,
|
7 |
+
"betas": [0.8, 0.99],
|
8 |
+
"eps": 1e-9,
|
9 |
+
"batch_size": 4,
|
10 |
+
"fp16_run": true,
|
11 |
+
"lr_decay": 0.999875,
|
12 |
+
"segment_size": 12800,
|
13 |
+
"init_lr_ratio": 1,
|
14 |
+
"warmup_epochs": 0,
|
15 |
+
"c_mel": 45,
|
16 |
+
"c_kl": 1.0
|
17 |
+
},
|
18 |
+
"data": {
|
19 |
+
"max_wav_value": 32768.0,
|
20 |
+
"sampling_rate": 32000,
|
21 |
+
"filter_length": 1024,
|
22 |
+
"hop_length": 320,
|
23 |
+
"win_length": 1024,
|
24 |
+
"n_mel_channels": 80,
|
25 |
+
"mel_fmin": 0.0,
|
26 |
+
"mel_fmax": null
|
27 |
+
},
|
28 |
+
"model": {
|
29 |
+
"inter_channels": 192,
|
30 |
+
"hidden_channels": 192,
|
31 |
+
"filter_channels": 768,
|
32 |
+
"n_heads": 2,
|
33 |
+
"n_layers": 6,
|
34 |
+
"kernel_size": 3,
|
35 |
+
"p_dropout": 0,
|
36 |
+
"resblock": "1",
|
37 |
+
"resblock_kernel_sizes": [3,7,11],
|
38 |
+
"resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
|
39 |
+
"upsample_rates": [10,8,2,2],
|
40 |
+
"upsample_initial_channel": 512,
|
41 |
+
"upsample_kernel_sizes": [20,16,4,4],
|
42 |
+
"use_spectral_norm": false,
|
43 |
+
"gin_channels": 256,
|
44 |
+
"spk_embed_dim": 109
|
45 |
+
}
|
46 |
+
}
|
src/configs/40k.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train": {
|
3 |
+
"log_interval": 200,
|
4 |
+
"seed": 1234,
|
5 |
+
"epochs": 20000,
|
6 |
+
"learning_rate": 1e-4,
|
7 |
+
"betas": [0.8, 0.99],
|
8 |
+
"eps": 1e-9,
|
9 |
+
"batch_size": 4,
|
10 |
+
"fp16_run": false,
|
11 |
+
"lr_decay": 0.999875,
|
12 |
+
"segment_size": 12800,
|
13 |
+
"init_lr_ratio": 1,
|
14 |
+
"warmup_epochs": 0,
|
15 |
+
"c_mel": 45,
|
16 |
+
"c_kl": 1.0
|
17 |
+
},
|
18 |
+
"data": {
|
19 |
+
"max_wav_value": 32768.0,
|
20 |
+
"sampling_rate": 40000,
|
21 |
+
"filter_length": 2048,
|
22 |
+
"hop_length": 400,
|
23 |
+
"win_length": 2048,
|
24 |
+
"n_mel_channels": 125,
|
25 |
+
"mel_fmin": 0.0,
|
26 |
+
"mel_fmax": null
|
27 |
+
},
|
28 |
+
"model": {
|
29 |
+
"inter_channels": 192,
|
30 |
+
"hidden_channels": 192,
|
31 |
+
"filter_channels": 768,
|
32 |
+
"n_heads": 2,
|
33 |
+
"n_layers": 6,
|
34 |
+
"kernel_size": 3,
|
35 |
+
"p_dropout": 0,
|
36 |
+
"resblock": "1",
|
37 |
+
"resblock_kernel_sizes": [3,7,11],
|
38 |
+
"resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
|
39 |
+
"upsample_rates": [10,10,2,2],
|
40 |
+
"upsample_initial_channel": 512,
|
41 |
+
"upsample_kernel_sizes": [16,16,4,4],
|
42 |
+
"use_spectral_norm": false,
|
43 |
+
"gin_channels": 256,
|
44 |
+
"spk_embed_dim": 109
|
45 |
+
}
|
46 |
+
}
|
src/configs/48k.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|