Daryl Fung commited on
Commit
39f3704
1 Parent(s): aef4da8

initial commit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.gitignore ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .DS_Store
2
+ __pycache__
3
+ /TEMP
4
+ *.pyd
5
+ .venv
6
+ /opt
7
+ tools/aria2c/
8
+ tools/flag.txt
9
+
10
+ # Imported from huggingface.co/lj1995/VoiceConversionWebUI
11
+ /pretrained
12
+ /pretrained_v2
13
+ /uvr5_weights
14
+ hubert_base.pt
15
+ rmvpe.onnx
16
+ rmvpe.pt
17
+
18
+ # Generated by RVC
19
+ /logs
20
+ /weights
21
+
22
+ # To set a Python version for the project
23
+ .tool-versions
24
+
25
+ /runtime
26
+ /assets/
27
+ /assets/weights/*
28
+ ffmpeg.*
29
+ ffprobe.*
CONTRIBUTING.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 贡献规则
2
+ 1. 一般来说,作者`@RVC-Boss`将拒绝所有的算法更改,除非它是为了修复某个代码层面的错误或警告
3
+ 2. 您可以贡献本仓库的其他位置,如翻译和WebUI,但请尽量作最小更改
4
+ 3. 所有更改都需要由`@RVC-Boss`批准,因此您的PR可能会被搁置
5
+ 4. 由此带来的不便请您谅解
6
+
7
+ # Contributing Rules
8
+ 1. Generally, the author `@RVC-Boss` will reject all algorithm changes unless what is to fix a code-level error or warning.
9
+ 2. You can contribute to other parts of this repo like translations and WebUI, but please minimize your changes as much as possible.
10
+ 3. All changes need to be approved by `@RVC-Boss`, so your PR may be put on hold.
11
+ 4. Please accept our apologies for any inconvenience caused.
Dockerfile ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # syntax=docker/dockerfile:1
2
+
3
+ FROM nvidia/cuda:11.6.2-cudnn8-runtime-ubuntu20.04
4
+
5
+ EXPOSE 7865
6
+
7
+ WORKDIR /app
8
+
9
+ # Install dependenceis to add PPAs
10
+ RUN apt-get update && \
11
+ apt-get install -y -qq ffmpeg aria2 && apt clean && \
12
+ apt-get install -y software-properties-common && \
13
+ apt-get clean && \
14
+ rm -rf /var/lib/apt/lists/*
15
+ # Add the deadsnakes PPA to get Python 3.9
16
+ RUN add-apt-repository ppa:deadsnakes/ppa
17
+
18
+ # Install Python 3.9 and pip
19
+ RUN apt-get update && \
20
+ apt-get install -y build-essential python-dev python3-dev python3.9-distutils python3.9-dev python3.9 curl && \
21
+ apt-get clean && \
22
+ update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 && \
23
+ curl https://bootstrap.pypa.io/get-pip.py | python3.9
24
+
25
+ # Set Python 3.9 as the default
26
+ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1
27
+
28
+ COPY . .
29
+
30
+ RUN python3 -m pip install --no-cache-dir -r requirements.txt
31
+
32
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/D40k.pth -d assets/pretrained_v2/ -o D40k.pth
33
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/G40k.pth -d assets/pretrained_v2/ -o G40k.pth
34
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0D40k.pth -d assets/pretrained_v2/ -o f0D40k.pth
35
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0G40k.pth -d assets/pretrained_v2/ -o f0G40k.pth
36
+
37
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d assets/uvr5_weights/ -o HP2-人声vocals+非人声instrumentals.pth
38
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d assets/uvr5_weights/ -o HP5-主旋律人声vocals+其他instrumentals.pth
39
+
40
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d assets/hubert -o hubert_base.pt
41
+
42
+ RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d assets/rmvpe -o rmvpe.pt
43
+
44
+ VOLUME [ "/app/weights", "/app/opt" ]
45
+
46
+ CMD ["python3", "infer-web.py"]
LICENSE ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2023-2024 liujing04
4
+ Copyright (c) 2023-2024 fumiama
5
+ Copyright (c) 2023-2024 Ftps
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
MIT协议暨相关引用库协议 ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 本软件及其相关代码以MIT协议开源,作者不对软件具备任何控制力,使用软件者、传播软件导出的声音者自负全责。
2
+ 如不认可该条款,则不能使用或引用软件包内任何代码和文件。
3
+
4
+ 特此授予任何获得本软件和相关文档文件(以下简称“软件”)副本的人免费使用、复制、修改、合并、出版、分发、再授权和/或销售本软件的权利,以及授予本软件所提供的人使用本软件的权利,但须符合以下条件:
5
+ 上述版权声明和本许可声明应包含在软件的所有副本或实质部分中。
6
+ 软件是“按原样”提供的,没有任何明示或暗示的保证,包括但不限于适销性、适用于特定目的和不侵权的保证。在任何情况下,作者或版权持有人均不承担因软件或软件的使用或其他交易而产生、产生或与之相关的任何索赔、损害赔偿或其他责任,无论是在合同诉讼、侵权诉讼还是其他诉讼中。
7
+
8
+
9
+ The LICENCEs for related libraries are as follows.
10
+ 相关引用库协议如下:
11
+
12
+ ContentVec
13
+ https://github.com/auspicious3000/contentvec/blob/main/LICENSE
14
+ MIT License
15
+
16
+ VITS
17
+ https://github.com/jaywalnut310/vits/blob/main/LICENSE
18
+ MIT License
19
+
20
+ HIFIGAN
21
+ https://github.com/jik876/hifi-gan/blob/master/LICENSE
22
+ MIT License
23
+
24
+ gradio
25
+ https://github.com/gradio-app/gradio/blob/main/LICENSE
26
+ Apache License 2.0
27
+
28
+ ffmpeg
29
+ https://github.com/FFmpeg/FFmpeg/blob/master/COPYING.LGPLv3
30
+ https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2021-02-28-12-32/ffmpeg-n4.3.2-160-gfbb9368226-win64-lgpl-4.3.zip
31
+ LPGLv3 License
32
+ MIT License
33
+
34
+ ultimatevocalremovergui
35
+ https://github.com/Anjok07/ultimatevocalremovergui/blob/master/LICENSE
36
+ https://github.com/yang123qwe/vocal_separation_by_uvr5
37
+ MIT License
38
+
39
+ audio-slicer
40
+ https://github.com/openvpi/audio-slicer/blob/main/LICENSE
41
+ MIT License
42
+
43
+ FreeSimpleGUI
44
+ https://github.com/spyoungtech/FreeSimpleGUI/blob/master/license.txt
45
+ LPGLv3 License
app.py ADDED
@@ -0,0 +1,1623 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import sys
3
+ from dotenv import load_dotenv
4
+
5
+ now_dir = os.getcwd()
6
+ sys.path.append(now_dir)
7
+ load_dotenv()
8
+ load_dotenv("sha256.env")
9
+ from infer.modules.vc.modules import VC
10
+ from infer.modules.uvr5.modules import uvr
11
+ from infer.lib.train.process_ckpt import (
12
+ change_info,
13
+ extract_small_model,
14
+ merge,
15
+ show_info,
16
+ )
17
+ from i18n.i18n import I18nAuto
18
+ from configs.config import Config
19
+ from sklearn.cluster import MiniBatchKMeans
20
+ import torch, platform
21
+ import numpy as np
22
+ import gradio as gr
23
+ import faiss
24
+ import fairseq
25
+ import pathlib
26
+ import json
27
+ from time import sleep
28
+ from subprocess import Popen
29
+ from random import shuffle
30
+ import warnings
31
+ import traceback
32
+ import threading
33
+ import shutil
34
+ import logging
35
+
36
+
37
+ logging.getLogger("numba").setLevel(logging.WARNING)
38
+ logging.getLogger("httpx").setLevel(logging.WARNING)
39
+
40
+ logger = logging.getLogger(__name__)
41
+
42
+ tmp = os.path.join(now_dir, "TEMP")
43
+ shutil.rmtree(tmp, ignore_errors=True)
44
+ shutil.rmtree("%s/runtime/Lib/site-packages/infer_pack" % (now_dir), ignore_errors=True)
45
+ shutil.rmtree("%s/runtime/Lib/site-packages/uvr5_pack" % (now_dir), ignore_errors=True)
46
+ os.makedirs(tmp, exist_ok=True)
47
+ os.makedirs(os.path.join(now_dir, "logs"), exist_ok=True)
48
+ os.makedirs(os.path.join(now_dir, "assets/weights"), exist_ok=True)
49
+ os.environ["TEMP"] = tmp
50
+ warnings.filterwarnings("ignore")
51
+ torch.manual_seed(114514)
52
+
53
+
54
+ config = Config()
55
+ vc = VC(config)
56
+
57
+ if not config.nocheck:
58
+ from infer.lib.rvcmd import check_all_assets, download_all_assets
59
+
60
+ if not check_all_assets(update=config.update):
61
+ if config.update:
62
+ download_all_assets(tmpdir=tmp)
63
+ if not check_all_assets(update=config.update):
64
+ logging.error("counld not satisfy all assets needed.")
65
+ exit(1)
66
+
67
+ if config.dml == True:
68
+
69
+ def forward_dml(ctx, x, scale):
70
+ ctx.scale = scale
71
+ res = x.clone().detach()
72
+ return res
73
+
74
+ fairseq.modules.grad_multiply.GradMultiply.forward = forward_dml
75
+ i18n = I18nAuto()
76
+ logger.info(i18n)
77
+ # 判断是否有能用来训练和加速推理的N卡
78
+ ngpu = torch.cuda.device_count()
79
+ gpu_infos = []
80
+ mem = []
81
+ if_gpu_ok = False
82
+
83
+ if torch.cuda.is_available() or ngpu != 0:
84
+ for i in range(ngpu):
85
+ gpu_name = torch.cuda.get_device_name(i)
86
+ if any(
87
+ value in gpu_name.upper()
88
+ for value in [
89
+ "10",
90
+ "16",
91
+ "20",
92
+ "30",
93
+ "40",
94
+ "A2",
95
+ "A3",
96
+ "A4",
97
+ "P4",
98
+ "A50",
99
+ "500",
100
+ "A60",
101
+ "70",
102
+ "80",
103
+ "90",
104
+ "M4",
105
+ "T4",
106
+ "TITAN",
107
+ "4060",
108
+ "L",
109
+ "6000",
110
+ ]
111
+ ):
112
+ # A10#A100#V100#A40#P40#M40#K80#A4500
113
+ if_gpu_ok = True # 至少有一张能用的N卡
114
+ gpu_infos.append("%s\t%s" % (i, gpu_name))
115
+ mem.append(
116
+ int(
117
+ torch.cuda.get_device_properties(i).total_memory
118
+ / 1024
119
+ / 1024
120
+ / 1024
121
+ + 0.4
122
+ )
123
+ )
124
+ if if_gpu_ok and len(gpu_infos) > 0:
125
+ gpu_info = "\n".join(gpu_infos)
126
+ default_batch_size = min(mem) // 2
127
+ else:
128
+ gpu_info = i18n("很遗憾您这没有能用的显卡来支持您训练")
129
+ default_batch_size = 1
130
+ gpus = "-".join([i[0] for i in gpu_infos])
131
+
132
+
133
+ weight_root = os.getenv("weight_root")
134
+ weight_uvr5_root = os.getenv("weight_uvr5_root")
135
+ index_root = os.getenv("index_root")
136
+ outside_index_root = os.getenv("outside_index_root")
137
+
138
+ names = []
139
+ for name in os.listdir(weight_root):
140
+ if name.endswith(".pth"):
141
+ names.append(name)
142
+ index_paths = []
143
+
144
+
145
+ def lookup_indices(index_root):
146
+ global index_paths
147
+ for root, dirs, files in os.walk(index_root, topdown=False):
148
+ for name in files:
149
+ if name.endswith(".index") and "trained" not in name:
150
+ index_paths.append("%s/%s" % (root, name))
151
+
152
+
153
+ lookup_indices(index_root)
154
+ lookup_indices(outside_index_root)
155
+ uvr5_names = []
156
+ for name in os.listdir(weight_uvr5_root):
157
+ if name.endswith(".pth") or "onnx" in name:
158
+ uvr5_names.append(name.replace(".pth", ""))
159
+
160
+
161
+ def change_choices():
162
+ names = []
163
+ for name in os.listdir(weight_root):
164
+ if name.endswith(".pth"):
165
+ names.append(name)
166
+ index_paths = []
167
+ for root, dirs, files in os.walk(index_root, topdown=False):
168
+ for name in files:
169
+ if name.endswith(".index") and "trained" not in name:
170
+ index_paths.append("%s/%s" % (root, name))
171
+ return {"choices": sorted(names), "__type__": "update"}, {
172
+ "choices": sorted(index_paths),
173
+ "__type__": "update",
174
+ }
175
+
176
+
177
+ def clean():
178
+ return {"value": "", "__type__": "update"}
179
+
180
+
181
+ def export_onnx(ModelPath, ExportedPath):
182
+ from infer.modules.onnx.export import export_onnx as eo
183
+
184
+ eo(ModelPath, ExportedPath)
185
+
186
+
187
+ sr_dict = {
188
+ "32k": 32000,
189
+ "40k": 40000,
190
+ "48k": 48000,
191
+ }
192
+
193
+
194
+ def if_done(done, p):
195
+ while 1:
196
+ if p.poll() is None:
197
+ sleep(0.5)
198
+ else:
199
+ break
200
+ done[0] = True
201
+
202
+
203
+ def if_done_multi(done, ps):
204
+ while 1:
205
+ # poll==None代表进程未结束
206
+ # 只要有一个进程未结束都不停
207
+ flag = 1
208
+ for p in ps:
209
+ if p.poll() is None:
210
+ flag = 0
211
+ sleep(0.5)
212
+ break
213
+ if flag == 1:
214
+ break
215
+ done[0] = True
216
+
217
+
218
+ def preprocess_dataset(trainset_dir, exp_dir, sr, n_p):
219
+ sr = sr_dict[sr]
220
+ os.makedirs("%s/logs/%s" % (now_dir, exp_dir), exist_ok=True)
221
+ f = open("%s/logs/%s/preprocess.log" % (now_dir, exp_dir), "w")
222
+ f.close()
223
+ cmd = '"%s" infer/modules/train/preprocess.py "%s" %s %s "%s/logs/%s" %s %.1f' % (
224
+ config.python_cmd,
225
+ trainset_dir,
226
+ sr,
227
+ n_p,
228
+ now_dir,
229
+ exp_dir,
230
+ config.noparallel,
231
+ config.preprocess_per,
232
+ )
233
+ logger.info("Execute: " + cmd)
234
+ # , stdin=PIPE, stdout=PIPE,stderr=PIPE,cwd=now_dir
235
+ p = Popen(cmd, shell=True)
236
+ # 煞笔gr, popen read都非得全跑完了再一次性读取, 不用gr就正常读一句输出一句;只能额外弄出一个文本流定时读
237
+ done = [False]
238
+ threading.Thread(
239
+ target=if_done,
240
+ args=(
241
+ done,
242
+ p,
243
+ ),
244
+ ).start()
245
+ while 1:
246
+ with open("%s/logs/%s/preprocess.log" % (now_dir, exp_dir), "r") as f:
247
+ yield (f.read())
248
+ sleep(1)
249
+ if done[0]:
250
+ break
251
+ with open("%s/logs/%s/preprocess.log" % (now_dir, exp_dir), "r") as f:
252
+ log = f.read()
253
+ logger.info(log)
254
+ yield log
255
+
256
+
257
+ # but2.click(extract_f0,[gpus6,np7,f0method8,if_f0_3,trainset_dir4],[info2])
258
+ def extract_f0_feature(gpus, n_p, f0method, if_f0, exp_dir, version19, gpus_rmvpe):
259
+ gpus = gpus.split("-")
260
+ os.makedirs("%s/logs/%s" % (now_dir, exp_dir), exist_ok=True)
261
+ f = open("%s/logs/%s/extract_f0_feature.log" % (now_dir, exp_dir), "w")
262
+ f.close()
263
+ if if_f0:
264
+ if f0method != "rmvpe_gpu":
265
+ cmd = (
266
+ '"%s" infer/modules/train/extract/extract_f0_print.py "%s/logs/%s" %s %s'
267
+ % (
268
+ config.python_cmd,
269
+ now_dir,
270
+ exp_dir,
271
+ n_p,
272
+ f0method,
273
+ )
274
+ )
275
+ logger.info("Execute: " + cmd)
276
+ p = Popen(
277
+ cmd, shell=True, cwd=now_dir
278
+ ) # , stdin=PIPE, stdout=PIPE,stderr=PIPE
279
+ # 煞笔gr, popen read都非得全跑完了再一次性读取, 不用gr就正常读一句输出一句;只能额外弄出一个文本流定时读
280
+ done = [False]
281
+ threading.Thread(
282
+ target=if_done,
283
+ args=(
284
+ done,
285
+ p,
286
+ ),
287
+ ).start()
288
+ else:
289
+ if gpus_rmvpe != "-":
290
+ gpus_rmvpe = gpus_rmvpe.split("-")
291
+ leng = len(gpus_rmvpe)
292
+ ps = []
293
+ for idx, n_g in enumerate(gpus_rmvpe):
294
+ cmd = (
295
+ '"%s" infer/modules/train/extract/extract_f0_rmvpe.py %s %s %s "%s/logs/%s" %s '
296
+ % (
297
+ config.python_cmd,
298
+ leng,
299
+ idx,
300
+ n_g,
301
+ now_dir,
302
+ exp_dir,
303
+ config.is_half,
304
+ )
305
+ )
306
+ logger.info("Execute: " + cmd)
307
+ p = Popen(
308
+ cmd, shell=True, cwd=now_dir
309
+ ) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
310
+ ps.append(p)
311
+ # 煞笔gr, popen read都非得全跑完了再一次性读取, 不用gr就正常读一句输出一句;只能额外弄出一个文本流定时读
312
+ done = [False]
313
+ threading.Thread(
314
+ target=if_done_multi, #
315
+ args=(
316
+ done,
317
+ ps,
318
+ ),
319
+ ).start()
320
+ else:
321
+ cmd = (
322
+ config.python_cmd
323
+ + ' infer/modules/train/extract/extract_f0_rmvpe_dml.py "%s/logs/%s" '
324
+ % (
325
+ now_dir,
326
+ exp_dir,
327
+ )
328
+ )
329
+ logger.info("Execute: " + cmd)
330
+ p = Popen(
331
+ cmd, shell=True, cwd=now_dir
332
+ ) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
333
+ p.wait()
334
+ done = [True]
335
+ while 1:
336
+ with open(
337
+ "%s/logs/%s/extract_f0_feature.log" % (now_dir, exp_dir), "r"
338
+ ) as f:
339
+ yield (f.read())
340
+ sleep(1)
341
+ if done[0]:
342
+ break
343
+ with open("%s/logs/%s/extract_f0_feature.log" % (now_dir, exp_dir), "r") as f:
344
+ log = f.read()
345
+ logger.info(log)
346
+ yield log
347
+ # 对不同part分别开多进程
348
+ """
349
+ n_part=int(sys.argv[1])
350
+ i_part=int(sys.argv[2])
351
+ i_gpu=sys.argv[3]
352
+ exp_dir=sys.argv[4]
353
+ os.environ["CUDA_VISIBLE_DEVICES"]=str(i_gpu)
354
+ """
355
+ leng = len(gpus)
356
+ ps = []
357
+ for idx, n_g in enumerate(gpus):
358
+ cmd = (
359
+ '"%s" infer/modules/train/extract_feature_print.py %s %s %s %s "%s/logs/%s" %s %s'
360
+ % (
361
+ config.python_cmd,
362
+ config.device,
363
+ leng,
364
+ idx,
365
+ n_g,
366
+ now_dir,
367
+ exp_dir,
368
+ version19,
369
+ config.is_half,
370
+ )
371
+ )
372
+ logger.info("Execute: " + cmd)
373
+ p = Popen(
374
+ cmd, shell=True, cwd=now_dir
375
+ ) # , shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE, cwd=now_dir
376
+ ps.append(p)
377
+ # 煞笔gr, popen read都非得全跑完了再一次性读取, 不用gr就正常读一句输出一句;只能额外弄出一个文本流定时读
378
+ done = [False]
379
+ threading.Thread(
380
+ target=if_done_multi,
381
+ args=(
382
+ done,
383
+ ps,
384
+ ),
385
+ ).start()
386
+ while 1:
387
+ with open("%s/logs/%s/extract_f0_feature.log" % (now_dir, exp_dir), "r") as f:
388
+ yield (f.read())
389
+ sleep(1)
390
+ if done[0]:
391
+ break
392
+ with open("%s/logs/%s/extract_f0_feature.log" % (now_dir, exp_dir), "r") as f:
393
+ log = f.read()
394
+ logger.info(log)
395
+ yield log
396
+
397
+
398
+ def get_pretrained_models(path_str, f0_str, sr2):
399
+ if_pretrained_generator_exist = os.access(
400
+ "assets/pretrained%s/%sG%s.pth" % (path_str, f0_str, sr2), os.F_OK
401
+ )
402
+ if_pretrained_discriminator_exist = os.access(
403
+ "assets/pretrained%s/%sD%s.pth" % (path_str, f0_str, sr2), os.F_OK
404
+ )
405
+ if not if_pretrained_generator_exist:
406
+ logger.warning(
407
+ "assets/pretrained%s/%sG%s.pth not exist, will not use pretrained model",
408
+ path_str,
409
+ f0_str,
410
+ sr2,
411
+ )
412
+ if not if_pretrained_discriminator_exist:
413
+ logger.warning(
414
+ "assets/pretrained%s/%sD%s.pth not exist, will not use pretrained model",
415
+ path_str,
416
+ f0_str,
417
+ sr2,
418
+ )
419
+ return (
420
+ (
421
+ "assets/pretrained%s/%sG%s.pth" % (path_str, f0_str, sr2)
422
+ if if_pretrained_generator_exist
423
+ else ""
424
+ ),
425
+ (
426
+ "assets/pretrained%s/%sD%s.pth" % (path_str, f0_str, sr2)
427
+ if if_pretrained_discriminator_exist
428
+ else ""
429
+ ),
430
+ )
431
+
432
+
433
+ def change_sr2(sr2, if_f0_3, version19):
434
+ path_str = "" if version19 == "v1" else "_v2"
435
+ f0_str = "f0" if if_f0_3 else ""
436
+ return get_pretrained_models(path_str, f0_str, sr2)
437
+
438
+
439
+ def change_version19(sr2, if_f0_3, version19):
440
+ path_str = "" if version19 == "v1" else "_v2"
441
+ if sr2 == "32k" and version19 == "v1":
442
+ sr2 = "40k"
443
+ to_return_sr2 = (
444
+ {"choices": ["40k", "48k"], "__type__": "update", "value": sr2}
445
+ if version19 == "v1"
446
+ else {"choices": ["40k", "48k", "32k"], "__type__": "update", "value": sr2}
447
+ )
448
+ f0_str = "f0" if if_f0_3 else ""
449
+ return (
450
+ *get_pretrained_models(path_str, f0_str, sr2),
451
+ to_return_sr2,
452
+ )
453
+
454
+
455
+ def change_f0(if_f0_3, sr2, version19): # f0method8,pretrained_G14,pretrained_D15
456
+ path_str = "" if version19 == "v1" else "_v2"
457
+ return (
458
+ {"visible": if_f0_3, "__type__": "update"},
459
+ {"visible": if_f0_3, "__type__": "update"},
460
+ *get_pretrained_models(path_str, "f0" if if_f0_3 == True else "", sr2),
461
+ )
462
+
463
+
464
+ # but3.click(click_train,[exp_dir1,sr2,if_f0_3,save_epoch10,total_epoch11,batch_size12,if_save_latest13,pretrained_G14,pretrained_D15,gpus16])
465
+ def click_train(
466
+ exp_dir1,
467
+ sr2,
468
+ if_f0_3,
469
+ spk_id5,
470
+ save_epoch10,
471
+ total_epoch11,
472
+ batch_size12,
473
+ if_save_latest13,
474
+ pretrained_G14,
475
+ pretrained_D15,
476
+ gpus16,
477
+ if_cache_gpu17,
478
+ if_save_every_weights18,
479
+ version19,
480
+ ):
481
+ # 生成filelist
482
+ exp_dir = "%s/logs/%s" % (now_dir, exp_dir1)
483
+ os.makedirs(exp_dir, exist_ok=True)
484
+ gt_wavs_dir = "%s/0_gt_wavs" % (exp_dir)
485
+ feature_dir = (
486
+ "%s/3_feature256" % (exp_dir)
487
+ if version19 == "v1"
488
+ else "%s/3_feature768" % (exp_dir)
489
+ )
490
+ if if_f0_3:
491
+ f0_dir = "%s/2a_f0" % (exp_dir)
492
+ f0nsf_dir = "%s/2b-f0nsf" % (exp_dir)
493
+ names = (
494
+ set([name.split(".")[0] for name in os.listdir(gt_wavs_dir)])
495
+ & set([name.split(".")[0] for name in os.listdir(feature_dir)])
496
+ & set([name.split(".")[0] for name in os.listdir(f0_dir)])
497
+ & set([name.split(".")[0] for name in os.listdir(f0nsf_dir)])
498
+ )
499
+ else:
500
+ names = set([name.split(".")[0] for name in os.listdir(gt_wavs_dir)]) & set(
501
+ [name.split(".")[0] for name in os.listdir(feature_dir)]
502
+ )
503
+ opt = []
504
+ for name in names:
505
+ if if_f0_3:
506
+ opt.append(
507
+ "%s/%s.wav|%s/%s.npy|%s/%s.wav.npy|%s/%s.wav.npy|%s"
508
+ % (
509
+ gt_wavs_dir.replace("\\", "\\\\"),
510
+ name,
511
+ feature_dir.replace("\\", "\\\\"),
512
+ name,
513
+ f0_dir.replace("\\", "\\\\"),
514
+ name,
515
+ f0nsf_dir.replace("\\", "\\\\"),
516
+ name,
517
+ spk_id5,
518
+ )
519
+ )
520
+ else:
521
+ opt.append(
522
+ "%s/%s.wav|%s/%s.npy|%s"
523
+ % (
524
+ gt_wavs_dir.replace("\\", "\\\\"),
525
+ name,
526
+ feature_dir.replace("\\", "\\\\"),
527
+ name,
528
+ spk_id5,
529
+ )
530
+ )
531
+ fea_dim = 256 if version19 == "v1" else 768
532
+ if if_f0_3:
533
+ for _ in range(2):
534
+ opt.append(
535
+ "%s/logs/mute/0_gt_wavs/mute%s.wav|%s/logs/mute/3_feature%s/mute.npy|%s/logs/mute/2a_f0/mute.wav.npy|%s/logs/mute/2b-f0nsf/mute.wav.npy|%s"
536
+ % (now_dir, sr2, now_dir, fea_dim, now_dir, now_dir, spk_id5)
537
+ )
538
+ else:
539
+ for _ in range(2):
540
+ opt.append(
541
+ "%s/logs/mute/0_gt_wavs/mute%s.wav|%s/logs/mute/3_feature%s/mute.npy|%s"
542
+ % (now_dir, sr2, now_dir, fea_dim, spk_id5)
543
+ )
544
+ shuffle(opt)
545
+ with open("%s/filelist.txt" % exp_dir, "w") as f:
546
+ f.write("\n".join(opt))
547
+ logger.debug("Write filelist done")
548
+ # 生成config#无需生成config
549
+ # cmd = python_cmd + " train_nsf_sim_cache_sid_load_pretrain.py -e mi-test -sr 40k -f0 1 -bs 4 -g 0 -te 10 -se 5 -pg pretrained/f0G40k.pth -pd pretrained/f0D40k.pth -l 1 -c 0"
550
+ logger.info("Use gpus: %s", str(gpus16))
551
+ if pretrained_G14 == "":
552
+ logger.info("No pretrained Generator")
553
+ if pretrained_D15 == "":
554
+ logger.info("No pretrained Discriminator")
555
+ if version19 == "v1" or sr2 == "40k":
556
+ config_path = "v1/%s.json" % sr2
557
+ else:
558
+ config_path = "v2/%s.json" % sr2
559
+ config_save_path = os.path.join(exp_dir, "config.json")
560
+ if not pathlib.Path(config_save_path).exists():
561
+ with open(config_save_path, "w", encoding="utf-8") as f:
562
+ json.dump(
563
+ config.json_config[config_path],
564
+ f,
565
+ ensure_ascii=False,
566
+ indent=4,
567
+ sort_keys=True,
568
+ )
569
+ f.write("\n")
570
+ if gpus16:
571
+ cmd = (
572
+ '"%s" infer/modules/train/train.py -e "%s" -sr %s -f0 %s -bs %s -g %s -te %s -se %s %s %s -l %s -c %s -sw %s -v %s'
573
+ % (
574
+ config.python_cmd,
575
+ exp_dir1,
576
+ sr2,
577
+ 1 if if_f0_3 else 0,
578
+ batch_size12,
579
+ gpus16,
580
+ total_epoch11,
581
+ save_epoch10,
582
+ "-pg %s" % pretrained_G14 if pretrained_G14 != "" else "",
583
+ "-pd %s" % pretrained_D15 if pretrained_D15 != "" else "",
584
+ 1 if if_save_latest13 == i18n("是") else 0,
585
+ 1 if if_cache_gpu17 == i18n("是") else 0,
586
+ 1 if if_save_every_weights18 == i18n("是") else 0,
587
+ version19,
588
+ )
589
+ )
590
+ else:
591
+ cmd = (
592
+ '"%s" infer/modules/train/train.py -e "%s" -sr %s -f0 %s -bs %s -te %s -se %s %s %s -l %s -c %s -sw %s -v %s'
593
+ % (
594
+ config.python_cmd,
595
+ exp_dir1,
596
+ sr2,
597
+ 1 if if_f0_3 else 0,
598
+ batch_size12,
599
+ total_epoch11,
600
+ save_epoch10,
601
+ "-pg %s" % pretrained_G14 if pretrained_G14 != "" else "",
602
+ "-pd %s" % pretrained_D15 if pretrained_D15 != "" else "",
603
+ 1 if if_save_latest13 == i18n("是") else 0,
604
+ 1 if if_cache_gpu17 == i18n("是") else 0,
605
+ 1 if if_save_every_weights18 == i18n("是") else 0,
606
+ version19,
607
+ )
608
+ )
609
+ logger.info("Execute: " + cmd)
610
+ p = Popen(cmd, shell=True, cwd=now_dir)
611
+ p.wait()
612
+ return "训练结束, 您可查看控制台训练日志或实验文件夹下的train.log"
613
+
614
+
615
+ # but4.click(train_index, [exp_dir1], info3)
616
+ def train_index(exp_dir1, version19):
617
+ # exp_dir = "%s/logs/%s" % (now_dir, exp_dir1)
618
+ exp_dir = "logs/%s" % (exp_dir1)
619
+ os.makedirs(exp_dir, exist_ok=True)
620
+ feature_dir = (
621
+ "%s/3_feature256" % (exp_dir)
622
+ if version19 == "v1"
623
+ else "%s/3_feature768" % (exp_dir)
624
+ )
625
+ if not os.path.exists(feature_dir):
626
+ return "请先进行特征提取!"
627
+ listdir_res = list(os.listdir(feature_dir))
628
+ if len(listdir_res) == 0:
629
+ return "请先进行特征提取!"
630
+ infos = []
631
+ npys = []
632
+ for name in sorted(listdir_res):
633
+ phone = np.load("%s/%s" % (feature_dir, name))
634
+ npys.append(phone)
635
+ big_npy = np.concatenate(npys, 0)
636
+ big_npy_idx = np.arange(big_npy.shape[0])
637
+ np.random.shuffle(big_npy_idx)
638
+ big_npy = big_npy[big_npy_idx]
639
+ if big_npy.shape[0] > 2e5:
640
+ infos.append("Trying doing kmeans %s shape to 10k centers." % big_npy.shape[0])
641
+ yield "\n".join(infos)
642
+ try:
643
+ big_npy = (
644
+ MiniBatchKMeans(
645
+ n_clusters=10000,
646
+ verbose=True,
647
+ batch_size=256 * config.n_cpu,
648
+ compute_labels=False,
649
+ init="random",
650
+ )
651
+ .fit(big_npy)
652
+ .cluster_centers_
653
+ )
654
+ except:
655
+ info = traceback.format_exc()
656
+ logger.info(info)
657
+ infos.append(info)
658
+ yield "\n".join(infos)
659
+
660
+ np.save("%s/total_fea.npy" % exp_dir, big_npy)
661
+ n_ivf = min(int(16 * np.sqrt(big_npy.shape[0])), big_npy.shape[0] // 39)
662
+ infos.append("%s,%s" % (big_npy.shape, n_ivf))
663
+ yield "\n".join(infos)
664
+ index = faiss.index_factory(256 if version19 == "v1" else 768, "IVF%s,Flat" % n_ivf)
665
+ # index = faiss.index_factory(256if version19=="v1"else 768, "IVF%s,PQ128x4fs,RFlat"%n_ivf)
666
+ infos.append("training")
667
+ yield "\n".join(infos)
668
+ index_ivf = faiss.extract_index_ivf(index) #
669
+ index_ivf.nprobe = 1
670
+ index.train(big_npy)
671
+ faiss.write_index(
672
+ index,
673
+ "%s/trained_IVF%s_Flat_nprobe_%s_%s_%s.index"
674
+ % (exp_dir, n_ivf, index_ivf.nprobe, exp_dir1, version19),
675
+ )
676
+ infos.append("adding")
677
+ yield "\n".join(infos)
678
+ batch_size_add = 8192
679
+ for i in range(0, big_npy.shape[0], batch_size_add):
680
+ index.add(big_npy[i : i + batch_size_add])
681
+ faiss.write_index(
682
+ index,
683
+ "%s/added_IVF%s_Flat_nprobe_%s_%s_%s.index"
684
+ % (exp_dir, n_ivf, index_ivf.nprobe, exp_dir1, version19),
685
+ )
686
+ infos.append(
687
+ "成功构建索引 added_IVF%s_Flat_nprobe_%s_%s_%s.index"
688
+ % (n_ivf, index_ivf.nprobe, exp_dir1, version19)
689
+ )
690
+ try:
691
+ link = os.link if platform.system() == "Windows" else os.symlink
692
+ link(
693
+ "%s/added_IVF%s_Flat_nprobe_%s_%s_%s.index"
694
+ % (exp_dir, n_ivf, index_ivf.nprobe, exp_dir1, version19),
695
+ "%s/%s_IVF%s_Flat_nprobe_%s_%s_%s.index"
696
+ % (
697
+ outside_index_root,
698
+ exp_dir1,
699
+ n_ivf,
700
+ index_ivf.nprobe,
701
+ exp_dir1,
702
+ version19,
703
+ ),
704
+ )
705
+ infos.append("链接索引到外部-%s" % (outside_index_root))
706
+ except:
707
+ infos.append("链接索引到外部-%s失败" % (outside_index_root))
708
+
709
+ # faiss.write_index(index, '%s/added_IVF%s_Flat_FastScan_%s.index'%(exp_dir,n_ivf,version19))
710
+ # infos.append("成功构建索引,added_IVF%s_Flat_FastScan_%s.index"%(n_ivf,version19))
711
+ yield "\n".join(infos)
712
+
713
+
714
+ # but5.click(train1key, [exp_dir1, sr2, if_f0_3, trainset_dir4, spk_id5, gpus6, np7, f0method8, save_epoch10, total_epoch11, batch_size12, if_save_latest13, pretrained_G14, pretrained_D15, gpus16, if_cache_gpu17], info3)
715
+ def train1key(
716
+ exp_dir1,
717
+ sr2,
718
+ if_f0_3,
719
+ trainset_dir4,
720
+ spk_id5,
721
+ np7,
722
+ f0method8,
723
+ save_epoch10,
724
+ total_epoch11,
725
+ batch_size12,
726
+ if_save_latest13,
727
+ pretrained_G14,
728
+ pretrained_D15,
729
+ gpus16,
730
+ if_cache_gpu17,
731
+ if_save_every_weights18,
732
+ version19,
733
+ gpus_rmvpe,
734
+ ):
735
+ infos = []
736
+
737
+ def get_info_str(strr):
738
+ infos.append(strr)
739
+ return "\n".join(infos)
740
+
741
+ # step1:处理数据
742
+ yield get_info_str(i18n("step1:正在处理数据"))
743
+ [get_info_str(_) for _ in preprocess_dataset(trainset_dir4, exp_dir1, sr2, np7)]
744
+
745
+ # step2a:提取音高
746
+ yield get_info_str(i18n("step2:正在提取音高&正在提取特征"))
747
+ [
748
+ get_info_str(_)
749
+ for _ in extract_f0_feature(
750
+ gpus16, np7, f0method8, if_f0_3, exp_dir1, version19, gpus_rmvpe
751
+ )
752
+ ]
753
+
754
+ # step3a:训练模型
755
+ yield get_info_str(i18n("step3a:正在训练模型"))
756
+ click_train(
757
+ exp_dir1,
758
+ sr2,
759
+ if_f0_3,
760
+ spk_id5,
761
+ save_epoch10,
762
+ total_epoch11,
763
+ batch_size12,
764
+ if_save_latest13,
765
+ pretrained_G14,
766
+ pretrained_D15,
767
+ gpus16,
768
+ if_cache_gpu17,
769
+ if_save_every_weights18,
770
+ version19,
771
+ )
772
+ yield get_info_str(
773
+ i18n("训练结束, 您可查看控制台训练日志或实验文件夹下的train.log")
774
+ )
775
+
776
+ # step3b:训练索引
777
+ [get_info_str(_) for _ in train_index(exp_dir1, version19)]
778
+ yield get_info_str(i18n("全流程结束!"))
779
+
780
+
781
+ # ckpt_path2.change(change_info_,[ckpt_path2],[sr__,if_f0__])
782
+ def change_info_(ckpt_path):
783
+ if not os.path.exists(ckpt_path.replace(os.path.basename(ckpt_path), "train.log")):
784
+ return {"__type__": "update"}, {"__type__": "update"}, {"__type__": "update"}
785
+ try:
786
+ with open(
787
+ ckpt_path.replace(os.path.basename(ckpt_path), "train.log"), "r"
788
+ ) as f:
789
+ info = eval(f.read().strip("\n").split("\n")[0].split("\t")[-1])
790
+ sr, f0 = info["sample_rate"], info["if_f0"]
791
+ version = "v2" if ("version" in info and info["version"] == "v2") else "v1"
792
+ return sr, str(f0), version
793
+ except:
794
+ traceback.print_exc()
795
+ return {"__type__": "update"}, {"__type__": "update"}, {"__type__": "update"}
796
+
797
+
798
+ F0GPUVisible = config.dml == False
799
+
800
+
801
+ def change_f0_method(f0method8):
802
+ if f0method8 == "rmvpe_gpu":
803
+ visible = F0GPUVisible
804
+ else:
805
+ visible = False
806
+ return {"visible": visible, "__type__": "update"}
807
+
808
+
809
+ with gr.Blocks(title="RVC WebUI") as app:
810
+ gr.Markdown("## RVC WebUI")
811
+ gr.Markdown(
812
+ value=i18n(
813
+ "本软件以MIT协议开源, 作者不对软件具备任何控制力, 使用软件者、传播软件导出的声音者自负全责. <br>如不认可该条款, 则不能使用或引用软件包内任何代码和文件. 详见根目录<b>LICENSE</b>."
814
+ )
815
+ )
816
+ with gr.Tabs():
817
+ with gr.TabItem(i18n("模型推理")):
818
+ with gr.Row():
819
+ sid0 = gr.Dropdown(label=i18n("推理音色"), choices=sorted(names))
820
+ with gr.Column():
821
+ refresh_button = gr.Button(
822
+ i18n("刷新音色列表和索引路径"), variant="primary"
823
+ )
824
+ clean_button = gr.Button(i18n("卸载音色省显存"), variant="primary")
825
+ spk_item = gr.Slider(
826
+ minimum=0,
827
+ maximum=2333,
828
+ step=1,
829
+ label=i18n("请选择说话人id"),
830
+ value=0,
831
+ visible=False,
832
+ interactive=True,
833
+ )
834
+ clean_button.click(
835
+ fn=clean, inputs=[], outputs=[sid0], api_name="infer_clean"
836
+ )
837
+ with gr.TabItem(i18n("单次推理")):
838
+ with gr.Group():
839
+ with gr.Row():
840
+ with gr.Column():
841
+ vc_transform0 = gr.Number(
842
+ label=i18n("变调(整数, 半音数量, 升八度12降八度-12)"),
843
+ value=0,
844
+ )
845
+ input_audio0 = gr.Textbox(
846
+ label=i18n(
847
+ "输入待处理音频文件路径(默认是正确格式示例)"
848
+ ),
849
+ placeholder="C:\\Users\\Desktop\\audio_example.wav",
850
+ )
851
+ file_index1 = gr.Textbox(
852
+ label=i18n(
853
+ "特征检索库文件路径,为空则使用下拉的选择结果"
854
+ ),
855
+ placeholder="C:\\Users\\Desktop\\model_example.index",
856
+ interactive=True,
857
+ )
858
+ file_index2 = gr.Dropdown(
859
+ label=i18n("自动检测index路径,下拉式选择(dropdown)"),
860
+ choices=sorted(index_paths),
861
+ interactive=True,
862
+ )
863
+ f0method0 = gr.Radio(
864
+ label=i18n(
865
+ "选择音高提取算法,输入歌声可用pm提速,harvest低音好但巨慢无比,crepe效果好但吃GPU,rmvpe效果最好且微吃GPU"
866
+ ),
867
+ choices=(
868
+ ["pm", "harvest", "crepe", "rmvpe"]
869
+ if config.dml == False
870
+ else ["pm", "harvest", "rmvpe"]
871
+ ),
872
+ value="rmvpe",
873
+ interactive=True,
874
+ )
875
+
876
+ with gr.Column():
877
+ resample_sr0 = gr.Slider(
878
+ minimum=0,
879
+ maximum=48000,
880
+ label=i18n("后处理重采样至最终采样率,0为不进行重采样"),
881
+ value=0,
882
+ step=1,
883
+ interactive=True,
884
+ )
885
+ rms_mix_rate0 = gr.Slider(
886
+ minimum=0,
887
+ maximum=1,
888
+ label=i18n(
889
+ "输入源音量包络替换输出音量包络融合比例,越靠近1越使用输出包络"
890
+ ),
891
+ value=0.25,
892
+ interactive=True,
893
+ )
894
+ protect0 = gr.Slider(
895
+ minimum=0,
896
+ maximum=0.5,
897
+ label=i18n(
898
+ "保护清辅音和呼吸声,防止电音撕裂等artifact,拉满0.5不开启,调低加大保护力度但可能降低索引效果"
899
+ ),
900
+ value=0.33,
901
+ step=0.01,
902
+ interactive=True,
903
+ )
904
+ filter_radius0 = gr.Slider(
905
+ minimum=0,
906
+ maximum=7,
907
+ label=i18n(
908
+ ">=3则使用对harvest音高识别的结果使用中值滤波,数值为滤波半径,使用可以削弱哑音"
909
+ ),
910
+ value=3,
911
+ step=1,
912
+ interactive=True,
913
+ )
914
+ index_rate1 = gr.Slider(
915
+ minimum=0,
916
+ maximum=1,
917
+ label=i18n("检索特征占比"),
918
+ value=0.75,
919
+ interactive=True,
920
+ )
921
+ f0_file = gr.File(
922
+ label=i18n(
923
+ "F0曲线文件, 可选, 一行一个音高, 代替默认F0及升降调"
924
+ ),
925
+ visible=False,
926
+ )
927
+
928
+ refresh_button.click(
929
+ fn=change_choices,
930
+ inputs=[],
931
+ outputs=[sid0, file_index2],
932
+ api_name="infer_refresh",
933
+ )
934
+ # file_big_npy1 = gr.Textbox(
935
+ # label=i18n("特征文件路径"),
936
+ # value="E:\\codes\py39\\vits_vc_gpu_train\\logs\\mi-test-1key\\total_fea.npy",
937
+ # interactive=True,
938
+ # )
939
+ with gr.Group():
940
+ with gr.Column():
941
+ but0 = gr.Button(i18n("转换"), variant="primary")
942
+ with gr.Row():
943
+ vc_output1 = gr.Textbox(label=i18n("输出信息"))
944
+ vc_output2 = gr.Audio(
945
+ label=i18n("输出音频(右下角三个点,点了可以下载)")
946
+ )
947
+
948
+ but0.click(
949
+ vc.vc_single,
950
+ [
951
+ spk_item,
952
+ input_audio0,
953
+ vc_transform0,
954
+ f0_file,
955
+ f0method0,
956
+ file_index1,
957
+ file_index2,
958
+ # file_big_npy1,
959
+ index_rate1,
960
+ filter_radius0,
961
+ resample_sr0,
962
+ rms_mix_rate0,
963
+ protect0,
964
+ ],
965
+ [vc_output1, vc_output2],
966
+ api_name="infer_convert",
967
+ )
968
+ with gr.TabItem(i18n("批量推理")):
969
+ gr.Markdown(
970
+ value=i18n(
971
+ "批量转换, 输入待转换音频文件夹, 或上传多个音频文件, 在指定文件夹(默认opt)下输出转换的音频. "
972
+ )
973
+ )
974
+ with gr.Row():
975
+ with gr.Column():
976
+ vc_transform1 = gr.Number(
977
+ label=i18n("变调(整数, 半音数量, 升八度12降八度-12)"),
978
+ value=0,
979
+ )
980
+ opt_input = gr.Textbox(
981
+ label=i18n("指定输出文件夹"), value="opt"
982
+ )
983
+ file_index3 = gr.Textbox(
984
+ label=i18n("特征检索库文件路径,为空则使用下拉���选择结果"),
985
+ value="",
986
+ interactive=True,
987
+ )
988
+ file_index4 = gr.Dropdown(
989
+ label=i18n("自动检测index路径,下拉式选择(dropdown)"),
990
+ choices=sorted(index_paths),
991
+ interactive=True,
992
+ )
993
+ f0method1 = gr.Radio(
994
+ label=i18n(
995
+ "选择音高提取算法,输入歌声可用pm提速,harvest低音好但巨慢无比,crepe效果好但吃GPU,rmvpe效果最好且微吃GPU"
996
+ ),
997
+ choices=(
998
+ ["pm", "harvest", "crepe", "rmvpe"]
999
+ if config.dml == False
1000
+ else ["pm", "harvest", "rmvpe"]
1001
+ ),
1002
+ value="rmvpe",
1003
+ interactive=True,
1004
+ )
1005
+ format1 = gr.Radio(
1006
+ label=i18n("导出文件格式"),
1007
+ choices=["wav", "flac", "mp3", "m4a"],
1008
+ value="wav",
1009
+ interactive=True,
1010
+ )
1011
+
1012
+ refresh_button.click(
1013
+ fn=lambda: change_choices()[1],
1014
+ inputs=[],
1015
+ outputs=file_index4,
1016
+ api_name="infer_refresh_batch",
1017
+ )
1018
+ # file_big_npy2 = gr.Textbox(
1019
+ # label=i18n("特征文件路径"),
1020
+ # value="E:\\codes\\py39\\vits_vc_gpu_train\\logs\\mi-test-1key\\total_fea.npy",
1021
+ # interactive=True,
1022
+ # )
1023
+
1024
+ with gr.Column():
1025
+ resample_sr1 = gr.Slider(
1026
+ minimum=0,
1027
+ maximum=48000,
1028
+ label=i18n("后处理重采样至最终采样率,0为不进行重采样"),
1029
+ value=0,
1030
+ step=1,
1031
+ interactive=True,
1032
+ )
1033
+ rms_mix_rate1 = gr.Slider(
1034
+ minimum=0,
1035
+ maximum=1,
1036
+ label=i18n(
1037
+ "输入源音量包络替换输出音量包络融合比例,越靠近1越使用输出包络"
1038
+ ),
1039
+ value=1,
1040
+ interactive=True,
1041
+ )
1042
+ protect1 = gr.Slider(
1043
+ minimum=0,
1044
+ maximum=0.5,
1045
+ label=i18n(
1046
+ "保护清辅音和呼吸声,防止电音撕裂等artifact,拉满0.5不开启,调低加大保护力度但可能降低索引效果"
1047
+ ),
1048
+ value=0.33,
1049
+ step=0.01,
1050
+ interactive=True,
1051
+ )
1052
+ filter_radius1 = gr.Slider(
1053
+ minimum=0,
1054
+ maximum=7,
1055
+ label=i18n(
1056
+ ">=3则使用对harvest音高识别的结果使用中值滤波,数值为滤波半径,使用可以削弱哑音"
1057
+ ),
1058
+ value=3,
1059
+ step=1,
1060
+ interactive=True,
1061
+ )
1062
+ index_rate2 = gr.Slider(
1063
+ minimum=0,
1064
+ maximum=1,
1065
+ label=i18n("检索特征占比"),
1066
+ value=1,
1067
+ interactive=True,
1068
+ )
1069
+ with gr.Row():
1070
+ dir_input = gr.Textbox(
1071
+ label=i18n(
1072
+ "输入待处理音频文件夹路径(去文件管理器地址栏拷就行了)"
1073
+ ),
1074
+ placeholder="C:\\Users\\Desktop\\input_vocal_dir",
1075
+ )
1076
+ inputs = gr.File(
1077
+ file_count="multiple",
1078
+ label=i18n("也可批量输入音频文件, 二选一, 优先读文件夹"),
1079
+ )
1080
+
1081
+ with gr.Row():
1082
+ but1 = gr.Button(i18n("转换"), variant="primary")
1083
+ vc_output3 = gr.Textbox(label=i18n("输出信息"))
1084
+
1085
+ but1.click(
1086
+ vc.vc_multi,
1087
+ [
1088
+ spk_item,
1089
+ dir_input,
1090
+ opt_input,
1091
+ inputs,
1092
+ vc_transform1,
1093
+ f0method1,
1094
+ file_index3,
1095
+ file_index4,
1096
+ # file_big_npy2,
1097
+ index_rate2,
1098
+ filter_radius1,
1099
+ resample_sr1,
1100
+ rms_mix_rate1,
1101
+ protect1,
1102
+ format1,
1103
+ ],
1104
+ [vc_output3],
1105
+ api_name="infer_convert_batch",
1106
+ )
1107
+ sid0.change(
1108
+ fn=vc.get_vc,
1109
+ inputs=[sid0, protect0, protect1],
1110
+ outputs=[spk_item, protect0, protect1, file_index2, file_index4],
1111
+ api_name="infer_change_voice",
1112
+ )
1113
+ with gr.TabItem(i18n("伴奏人声分离&去混响&去回声")):
1114
+ with gr.Group():
1115
+ gr.Markdown(
1116
+ value=i18n(
1117
+ "人声伴奏分离批量处理, 使用UVR5模型。 <br>合格的文件夹路径格式举例: E:\\codes\\py39\\vits_vc_gpu\\白鹭霜华测试样例(去文件管理器地址栏拷就行了)。 <br>模型分为三类: <br>1、保留人声:不带和声的音频选这个,对主人声保留比HP5更好。内置HP2和HP3两个模型,HP3可能轻微漏伴奏但对主人声保留比HP2稍微好一丁点; <br>2、仅保留主人声:带和声的音频选这个,对主人声可能有削弱。内置HP5一个模型; <br> 3、去混响、去延迟模型(by FoxJoy):<br>  (1)MDX-Net(onnx_dereverb):对于双通道混响是最好的选择,不能去除单通道混响;<br>&emsp;(234)DeEcho:去除延迟效果。Aggressive比Normal去除得更彻底,DeReverb额外去除混响,可去除单声道混响,但是对高频重的板式混响去不干净。<br>去混响/去延迟,附:<br>1、DeEcho-DeReverb模型的耗时是另外2个DeEcho模型的接近2倍;<br>2、MDX-Net-Dereverb模型挺慢的;<br>3、个人推荐的最干净的配置是先MDX-Net再DeEcho-Aggressive。"
1118
+ )
1119
+ )
1120
+ with gr.Row():
1121
+ with gr.Column():
1122
+ dir_wav_input = gr.Textbox(
1123
+ label=i18n("输入待处理音频文件夹路径"),
1124
+ placeholder="C:\\Users\\Desktop\\todo-songs",
1125
+ )
1126
+ wav_inputs = gr.File(
1127
+ file_count="multiple",
1128
+ label=i18n("也可批量输入音频文件, 二选一, 优先读文件夹"),
1129
+ )
1130
+ with gr.Column():
1131
+ model_choose = gr.Dropdown(
1132
+ label=i18n("模型"), choices=uvr5_names
1133
+ )
1134
+ agg = gr.Slider(
1135
+ minimum=0,
1136
+ maximum=20,
1137
+ step=1,
1138
+ label="人声提取激进程度",
1139
+ value=10,
1140
+ interactive=True,
1141
+ visible=False, # 先不开放调整
1142
+ )
1143
+ opt_vocal_root = gr.Textbox(
1144
+ label=i18n("指定输出主人声文件夹"), value="opt"
1145
+ )
1146
+ opt_ins_root = gr.Textbox(
1147
+ label=i18n("指定输出非主人声文件夹"), value="opt"
1148
+ )
1149
+ format0 = gr.Radio(
1150
+ label=i18n("导出文件格式"),
1151
+ choices=["wav", "flac", "mp3", "m4a"],
1152
+ value="flac",
1153
+ interactive=True,
1154
+ )
1155
+ but2 = gr.Button(i18n("转换"), variant="primary")
1156
+ vc_output4 = gr.Textbox(label=i18n("输出信息"))
1157
+ but2.click(
1158
+ uvr,
1159
+ [
1160
+ model_choose,
1161
+ dir_wav_input,
1162
+ opt_vocal_root,
1163
+ wav_inputs,
1164
+ opt_ins_root,
1165
+ agg,
1166
+ format0,
1167
+ ],
1168
+ [vc_output4],
1169
+ api_name="uvr_convert",
1170
+ )
1171
+ with gr.TabItem(i18n("训练")):
1172
+ gr.Markdown(
1173
+ value=i18n(
1174
+ "step1: 填写实验配置. 实验数据放在logs下, 每个实验一个文件夹, 需手工输入实验名路径, 内含实验配置, 日志, 训练得到的模型文件. "
1175
+ )
1176
+ )
1177
+ with gr.Row():
1178
+ exp_dir1 = gr.Textbox(label=i18n("输入实验名"), value="mi-test")
1179
+ sr2 = gr.Radio(
1180
+ label=i18n("目标采样率"),
1181
+ choices=["40k", "48k"],
1182
+ value="40k",
1183
+ interactive=True,
1184
+ )
1185
+ if_f0_3 = gr.Radio(
1186
+ label=i18n("模型是否带音高指导(唱歌一定要, 语音可以不要)"),
1187
+ choices=[i18n("是"), i18n("否")],
1188
+ value=i18n("是"),
1189
+ interactive=True,
1190
+ )
1191
+ version19 = gr.Radio(
1192
+ label=i18n("版本"),
1193
+ choices=["v1", "v2"],
1194
+ value="v2",
1195
+ interactive=True,
1196
+ visible=True,
1197
+ )
1198
+ np7 = gr.Slider(
1199
+ minimum=0,
1200
+ maximum=config.n_cpu,
1201
+ step=1,
1202
+ label=i18n("提取音高和处理数据使用的CPU进程数"),
1203
+ value=int(np.ceil(config.n_cpu / 1.5)),
1204
+ interactive=True,
1205
+ )
1206
+ with gr.Group(): # 暂时单人的, 后面支持最多4人的#数据处理
1207
+ gr.Markdown(
1208
+ value=i18n(
1209
+ "step2a: 自动遍历训练文件夹下所有可解码成音频的文件并进行切片归一化, 在实验目录下生成2个wav文件夹; 暂时只支持单人训练. "
1210
+ )
1211
+ )
1212
+ with gr.Row():
1213
+ trainset_dir4 = gr.Textbox(
1214
+ label=i18n("输入训练文件夹路径"),
1215
+ value=i18n("E:\\语音音频+标注\\米津玄师\\src"),
1216
+ )
1217
+ spk_id5 = gr.Slider(
1218
+ minimum=0,
1219
+ maximum=4,
1220
+ step=1,
1221
+ label=i18n("请指定说话人id"),
1222
+ value=0,
1223
+ interactive=True,
1224
+ )
1225
+ but1 = gr.Button(i18n("处理数据"), variant="primary")
1226
+ info1 = gr.Textbox(label=i18n("输出信息"), value="")
1227
+ but1.click(
1228
+ preprocess_dataset,
1229
+ [trainset_dir4, exp_dir1, sr2, np7],
1230
+ [info1],
1231
+ api_name="train_preprocess",
1232
+ )
1233
+ with gr.Group():
1234
+ gr.Markdown(
1235
+ value=i18n(
1236
+ "step2b: 使用CPU提取音高(如果模型带音高), 使用GPU提取特征(选择卡号)"
1237
+ )
1238
+ )
1239
+ with gr.Row():
1240
+ with gr.Column():
1241
+ gpus6 = gr.Textbox(
1242
+ label=i18n(
1243
+ "以-分隔输入使用的卡号, 例如 0-1-2 使用卡0和卡1和卡2"
1244
+ ),
1245
+ value=gpus,
1246
+ interactive=True,
1247
+ visible=F0GPUVisible,
1248
+ )
1249
+ gpu_info9 = gr.Textbox(
1250
+ label=i18n("显卡信息"), value=gpu_info, visible=F0GPUVisible
1251
+ )
1252
+ with gr.Column():
1253
+ f0method8 = gr.Radio(
1254
+ label=i18n(
1255
+ "选择音高提取算法:输入歌声可用pm提速,高质量语音但CPU差可用dio提速,harvest质量更好但慢,rmvpe效果最好且微吃CPU/GPU"
1256
+ ),
1257
+ choices=["pm", "harvest", "dio", "rmvpe", "rmvpe_gpu"],
1258
+ value="rmvpe_gpu",
1259
+ interactive=True,
1260
+ )
1261
+ gpus_rmvpe = gr.Textbox(
1262
+ label=i18n(
1263
+ "rmvpe卡号配置:以-分隔输入使用的不同进程卡号,例如0-0-1使用在卡0上跑2个进程并在卡1上跑1个进程"
1264
+ ),
1265
+ value="%s-%s" % (gpus, gpus),
1266
+ interactive=True,
1267
+ visible=F0GPUVisible,
1268
+ )
1269
+ but2 = gr.Button(i18n("特征提取"), variant="primary")
1270
+ info2 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
1271
+ f0method8.change(
1272
+ fn=change_f0_method,
1273
+ inputs=[f0method8],
1274
+ outputs=[gpus_rmvpe],
1275
+ )
1276
+ but2.click(
1277
+ extract_f0_feature,
1278
+ [
1279
+ gpus6,
1280
+ np7,
1281
+ f0method8,
1282
+ if_f0_3,
1283
+ exp_dir1,
1284
+ version19,
1285
+ gpus_rmvpe,
1286
+ ],
1287
+ [info2],
1288
+ api_name="train_extract_f0_feature",
1289
+ )
1290
+ with gr.Group():
1291
+ gr.Markdown(value=i18n("step3: 填写训练设置, 开始训练模型和索引"))
1292
+ with gr.Row():
1293
+ save_epoch10 = gr.Slider(
1294
+ minimum=1,
1295
+ maximum=50,
1296
+ step=1,
1297
+ label=i18n("保存频率save_every_epoch"),
1298
+ value=5,
1299
+ interactive=True,
1300
+ )
1301
+ total_epoch11 = gr.Slider(
1302
+ minimum=2,
1303
+ maximum=1000,
1304
+ step=1,
1305
+ label=i18n("总训练轮数total_epoch"),
1306
+ value=20,
1307
+ interactive=True,
1308
+ )
1309
+ batch_size12 = gr.Slider(
1310
+ minimum=1,
1311
+ maximum=40,
1312
+ step=1,
1313
+ label=i18n("每张显卡的batch_size"),
1314
+ value=default_batch_size,
1315
+ interactive=True,
1316
+ )
1317
+ if_save_latest13 = gr.Radio(
1318
+ label=i18n("是否仅保存最新的ckpt文件以节省硬盘空间"),
1319
+ choices=[i18n("是"), i18n("否")],
1320
+ value=i18n("否"),
1321
+ interactive=True,
1322
+ )
1323
+ if_cache_gpu17 = gr.Radio(
1324
+ label=i18n(
1325
+ "是否缓存所有训练集至显存. 10min以下小数据可缓存以加速训练, 大数据缓存会炸显存也加不了多少速"
1326
+ ),
1327
+ choices=[i18n("是"), i18n("否")],
1328
+ value=i18n("否"),
1329
+ interactive=True,
1330
+ )
1331
+ if_save_every_weights18 = gr.Radio(
1332
+ label=i18n(
1333
+ "是否在每次保存时间点将最终小模型保存至weights文件夹"
1334
+ ),
1335
+ choices=[i18n("是"), i18n("否")],
1336
+ value=i18n("否"),
1337
+ interactive=True,
1338
+ )
1339
+ with gr.Row():
1340
+ pretrained_G14 = gr.Textbox(
1341
+ label=i18n("加载预训练底模G路径"),
1342
+ value="assets/pretrained_v2/f0G40k.pth",
1343
+ interactive=True,
1344
+ )
1345
+ pretrained_D15 = gr.Textbox(
1346
+ label=i18n("加载预训练底模D路径"),
1347
+ value="assets/pretrained_v2/f0D40k.pth",
1348
+ interactive=True,
1349
+ )
1350
+ sr2.change(
1351
+ change_sr2,
1352
+ [sr2, if_f0_3, version19],
1353
+ [pretrained_G14, pretrained_D15],
1354
+ )
1355
+ version19.change(
1356
+ change_version19,
1357
+ [sr2, if_f0_3, version19],
1358
+ [pretrained_G14, pretrained_D15, sr2],
1359
+ )
1360
+ if_f0_3.change(
1361
+ change_f0,
1362
+ [if_f0_3, sr2, version19],
1363
+ [f0method8, gpus_rmvpe, pretrained_G14, pretrained_D15],
1364
+ )
1365
+ gpus16 = gr.Textbox(
1366
+ label=i18n(
1367
+ "以-分隔输入使用的卡号, 例如 0-1-2 使用卡0和卡1和卡2"
1368
+ ),
1369
+ value=gpus,
1370
+ interactive=True,
1371
+ )
1372
+ but3 = gr.Button(i18n("训练模型"), variant="primary")
1373
+ but4 = gr.Button(i18n("训练特征索引"), variant="primary")
1374
+ but5 = gr.Button(i18n("一键训练"), variant="primary")
1375
+ info3 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=10)
1376
+ but3.click(
1377
+ click_train,
1378
+ [
1379
+ exp_dir1,
1380
+ sr2,
1381
+ if_f0_3,
1382
+ spk_id5,
1383
+ save_epoch10,
1384
+ total_epoch11,
1385
+ batch_size12,
1386
+ if_save_latest13,
1387
+ pretrained_G14,
1388
+ pretrained_D15,
1389
+ gpus16,
1390
+ if_cache_gpu17,
1391
+ if_save_every_weights18,
1392
+ version19,
1393
+ ],
1394
+ info3,
1395
+ api_name="train_start",
1396
+ )
1397
+ but4.click(train_index, [exp_dir1, version19], info3)
1398
+ but5.click(
1399
+ train1key,
1400
+ [
1401
+ exp_dir1,
1402
+ sr2,
1403
+ if_f0_3,
1404
+ trainset_dir4,
1405
+ spk_id5,
1406
+ np7,
1407
+ f0method8,
1408
+ save_epoch10,
1409
+ total_epoch11,
1410
+ batch_size12,
1411
+ if_save_latest13,
1412
+ pretrained_G14,
1413
+ pretrained_D15,
1414
+ gpus16,
1415
+ if_cache_gpu17,
1416
+ if_save_every_weights18,
1417
+ version19,
1418
+ gpus_rmvpe,
1419
+ ],
1420
+ info3,
1421
+ api_name="train_start_all",
1422
+ )
1423
+
1424
+ with gr.TabItem(i18n("ckpt处理")):
1425
+ with gr.Group():
1426
+ gr.Markdown(value=i18n("模型融合, 可用于测试音色融合"))
1427
+ with gr.Row():
1428
+ ckpt_a = gr.Textbox(
1429
+ label=i18n("A模型路径"), value="", interactive=True
1430
+ )
1431
+ ckpt_b = gr.Textbox(
1432
+ label=i18n("B模型路径"), value="", interactive=True
1433
+ )
1434
+ alpha_a = gr.Slider(
1435
+ minimum=0,
1436
+ maximum=1,
1437
+ label=i18n("A模型权重"),
1438
+ value=0.5,
1439
+ interactive=True,
1440
+ )
1441
+ with gr.Row():
1442
+ sr_ = gr.Radio(
1443
+ label=i18n("目标采样率"),
1444
+ choices=["40k", "48k"],
1445
+ value="40k",
1446
+ interactive=True,
1447
+ )
1448
+ if_f0_ = gr.Radio(
1449
+ label=i18n("模型是否带音高指导"),
1450
+ choices=[i18n("是"), i18n("否")],
1451
+ value=i18n("是"),
1452
+ interactive=True,
1453
+ )
1454
+ info__ = gr.Textbox(
1455
+ label=i18n("要置入的模型信息"),
1456
+ value="",
1457
+ max_lines=8,
1458
+ interactive=True,
1459
+ )
1460
+ name_to_save0 = gr.Textbox(
1461
+ label=i18n("保存的模型名不带后缀"),
1462
+ value="",
1463
+ max_lines=1,
1464
+ interactive=True,
1465
+ )
1466
+ version_2 = gr.Radio(
1467
+ label=i18n("模型版本型号"),
1468
+ choices=["v1", "v2"],
1469
+ value="v1",
1470
+ interactive=True,
1471
+ )
1472
+ with gr.Row():
1473
+ but6 = gr.Button(i18n("融合"), variant="primary")
1474
+ info4 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
1475
+ but6.click(
1476
+ merge,
1477
+ [
1478
+ ckpt_a,
1479
+ ckpt_b,
1480
+ alpha_a,
1481
+ sr_,
1482
+ if_f0_,
1483
+ info__,
1484
+ name_to_save0,
1485
+ version_2,
1486
+ ],
1487
+ info4,
1488
+ api_name="ckpt_merge",
1489
+ ) # def merge(path1,path2,alpha1,sr,f0,info):
1490
+ with gr.Group():
1491
+ gr.Markdown(
1492
+ value=i18n("修改模型信息(仅支持weights文件夹下提取的小模型文件)")
1493
+ )
1494
+ with gr.Row():
1495
+ ckpt_path0 = gr.Textbox(
1496
+ label=i18n("模型路径"), value="", interactive=True
1497
+ )
1498
+ info_ = gr.Textbox(
1499
+ label=i18n("要改的模型信息"),
1500
+ value="",
1501
+ max_lines=8,
1502
+ interactive=True,
1503
+ )
1504
+ name_to_save1 = gr.Textbox(
1505
+ label=i18n("保存的文件名, 默认空为和源文件同名"),
1506
+ value="",
1507
+ max_lines=8,
1508
+ interactive=True,
1509
+ )
1510
+ with gr.Row():
1511
+ but7 = gr.Button(i18n("修改"), variant="primary")
1512
+ info5 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
1513
+ but7.click(
1514
+ change_info,
1515
+ [ckpt_path0, info_, name_to_save1],
1516
+ info5,
1517
+ api_name="ckpt_modify",
1518
+ )
1519
+ with gr.Group():
1520
+ gr.Markdown(
1521
+ value=i18n("查看模型信息(仅支持weights文件夹下提取的小模型文件)")
1522
+ )
1523
+ with gr.Row():
1524
+ ckpt_path1 = gr.Textbox(
1525
+ label=i18n("模型路径"), value="", interactive=True
1526
+ )
1527
+ but8 = gr.Button(i18n("查看"), variant="primary")
1528
+ info6 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
1529
+ but8.click(show_info, [ckpt_path1], info6, api_name="ckpt_show")
1530
+ with gr.Group():
1531
+ gr.Markdown(
1532
+ value=i18n(
1533
+ "模型提取(输入logs文件夹下大文件模型路径),适用于训一半不想训了模型没有自动提取保存小文件模型,或者想测试中间模型的情况"
1534
+ )
1535
+ )
1536
+ with gr.Row():
1537
+ ckpt_path2 = gr.Textbox(
1538
+ label=i18n("模型路径"),
1539
+ value="E:\\codes\\py39\\logs\\mi-test_f0_48k\\G_23333.pth",
1540
+ interactive=True,
1541
+ )
1542
+ save_name = gr.Textbox(
1543
+ label=i18n("保存名"), value="", interactive=True
1544
+ )
1545
+ sr__ = gr.Radio(
1546
+ label=i18n("目标采样率"),
1547
+ choices=["32k", "40k", "48k"],
1548
+ value="40k",
1549
+ interactive=True,
1550
+ )
1551
+ if_f0__ = gr.Radio(
1552
+ label=i18n("模型是否带音高指导,1是0否"),
1553
+ choices=["1", "0"],
1554
+ value="1",
1555
+ interactive=True,
1556
+ )
1557
+ version_1 = gr.Radio(
1558
+ label=i18n("模型版本型号"),
1559
+ choices=["v1", "v2"],
1560
+ value="v2",
1561
+ interactive=True,
1562
+ )
1563
+ info___ = gr.Textbox(
1564
+ label=i18n("要置入的模型信息"),
1565
+ value="",
1566
+ max_lines=8,
1567
+ interactive=True,
1568
+ )
1569
+ but9 = gr.Button(i18n("提取"), variant="primary")
1570
+ info7 = gr.Textbox(label=i18n("输出信息"), value="", max_lines=8)
1571
+ ckpt_path2.change(
1572
+ change_info_, [ckpt_path2], [sr__, if_f0__, version_1]
1573
+ )
1574
+ but9.click(
1575
+ extract_small_model,
1576
+ [ckpt_path2, save_name, sr__, if_f0__, info___, version_1],
1577
+ info7,
1578
+ api_name="ckpt_extract",
1579
+ )
1580
+
1581
+ with gr.TabItem(i18n("Onnx导出")):
1582
+ with gr.Row():
1583
+ ckpt_dir = gr.Textbox(
1584
+ label=i18n("RVC模型路径"), value="", interactive=True
1585
+ )
1586
+ with gr.Row():
1587
+ onnx_dir = gr.Textbox(
1588
+ label=i18n("Onnx输出路径"), value="", interactive=True
1589
+ )
1590
+ with gr.Row():
1591
+ infoOnnx = gr.Label(label="info")
1592
+ with gr.Row():
1593
+ butOnnx = gr.Button(i18n("导出Onnx模型"), variant="primary")
1594
+ butOnnx.click(
1595
+ export_onnx, [ckpt_dir, onnx_dir], infoOnnx, api_name="export_onnx"
1596
+ )
1597
+
1598
+ tab_faq = i18n("常见问题解答")
1599
+ with gr.TabItem(tab_faq):
1600
+ try:
1601
+ if tab_faq == "常见问题解答":
1602
+ with open("docs/cn/faq.md", "r", encoding="utf8") as f:
1603
+ info = f.read()
1604
+ else:
1605
+ with open("docs/en/faq_en.md", "r", encoding="utf8") as f:
1606
+ info = f.read()
1607
+ gr.Markdown(value=info)
1608
+ except:
1609
+ gr.Markdown(traceback.format_exc())
1610
+
1611
+ try:
1612
+ if config.iscolab:
1613
+ app.queue(max_size=1022).launch(share=True, max_threads=511)
1614
+ else:
1615
+ app.queue(max_size=1022).launch(
1616
+ max_threads=511,
1617
+ server_name="0.0.0.0",
1618
+ inbrowser=not config.noautoopen,
1619
+ server_port=config.listen_port,
1620
+ quiet=True,
1621
+ )
1622
+ except Exception as e:
1623
+ logger.error(str(e))
configs/config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"pth_path": "assets/weights/kikiV1.pth", "index_path": "logs/kikiV1.index", "sg_hostapi": "MME", "sg_wasapi_exclusive": false, "sg_input_device": "VoiceMeeter Output (VB-Audio Vo", "sg_output_device": "VoiceMeeter Input (VB-Audio Voi", "sr_type": "sr_device", "threhold": -60.0, "pitch": 12.0, "formant": 0.0, "rms_mix_rate": 0.5, "index_rate": 0.0, "block_time": 0.15, "crossfade_length": 0.08, "extra_time": 2.0, "n_cpu": 4.0, "use_jit": false, "use_pv": false, "f0method": "fcpe"}
configs/config.py ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import os
3
+ import sys
4
+ import json
5
+ import shutil
6
+ from multiprocessing import cpu_count
7
+
8
+ import torch
9
+
10
+ try:
11
+ import intel_extension_for_pytorch as ipex # pylint: disable=import-error, unused-import
12
+
13
+ if torch.xpu.is_available():
14
+ from infer.modules.ipex import ipex_init
15
+
16
+ ipex_init()
17
+ except Exception: # pylint: disable=broad-exception-caught
18
+ pass
19
+ import logging
20
+
21
+ logger = logging.getLogger(__name__)
22
+
23
+
24
+ version_config_list = [
25
+ "v1/32k.json",
26
+ "v1/40k.json",
27
+ "v1/48k.json",
28
+ "v2/48k.json",
29
+ "v2/32k.json",
30
+ ]
31
+
32
+
33
+ def singleton_variable(func):
34
+ def wrapper(*args, **kwargs):
35
+ if not wrapper.instance:
36
+ wrapper.instance = func(*args, **kwargs)
37
+ return wrapper.instance
38
+
39
+ wrapper.instance = None
40
+ return wrapper
41
+
42
+
43
+ @singleton_variable
44
+ class Config:
45
+ def __init__(self):
46
+ self.device = "cuda:0"
47
+ self.is_half = True
48
+ self.use_jit = False
49
+ self.n_cpu = 0
50
+ self.gpu_name = None
51
+ self.json_config = self.load_config_json()
52
+ self.gpu_mem = None
53
+ (
54
+ self.python_cmd,
55
+ self.listen_port,
56
+ self.iscolab,
57
+ self.noparallel,
58
+ self.noautoopen,
59
+ self.dml,
60
+ self.nocheck,
61
+ self.update,
62
+ ) = self.arg_parse()
63
+ self.instead = ""
64
+ self.preprocess_per = 3.7
65
+ self.x_pad, self.x_query, self.x_center, self.x_max = self.device_config()
66
+
67
+ @staticmethod
68
+ def load_config_json() -> dict:
69
+ d = {}
70
+ for config_file in version_config_list:
71
+ p = f"configs/inuse/{config_file}"
72
+ if not os.path.exists(p):
73
+ shutil.copy(f"configs/{config_file}", p)
74
+ with open(f"configs/inuse/{config_file}", "r") as f:
75
+ d[config_file] = json.load(f)
76
+ return d
77
+
78
+ @staticmethod
79
+ def arg_parse() -> tuple:
80
+ exe = sys.executable or "python"
81
+ parser = argparse.ArgumentParser()
82
+ parser.add_argument("--port", type=int, default=7865, help="Listen port")
83
+ parser.add_argument("--pycmd", type=str, default='python', help="Python command")
84
+ parser.add_argument("--colab", action="store_true", help="Launch in colab")
85
+ parser.add_argument(
86
+ "--noparallel", action="store_true", help="Disable parallel processing"
87
+ )
88
+ parser.add_argument(
89
+ "--noautoopen",
90
+ action="store_true",
91
+ help="Do not open in browser automatically",
92
+ )
93
+ parser.add_argument(
94
+ "--dml",
95
+ action="store_true",
96
+ help="torch_dml",
97
+ )
98
+ parser.add_argument(
99
+ "--nocheck", action="store_true", help="Run without checking assets"
100
+ )
101
+ parser.add_argument(
102
+ "--update", action="store_true", help="Update to latest assets"
103
+ )
104
+ cmd_opts = parser.parse_args()
105
+
106
+ cmd_opts.port = cmd_opts.port if 0 <= cmd_opts.port <= 65535 else 7865
107
+
108
+ return (
109
+ cmd_opts.pycmd,
110
+ cmd_opts.port,
111
+ cmd_opts.colab,
112
+ cmd_opts.noparallel,
113
+ cmd_opts.noautoopen,
114
+ cmd_opts.dml,
115
+ cmd_opts.nocheck,
116
+ cmd_opts.update,
117
+ )
118
+
119
+ # has_mps is only available in nightly pytorch (for now) and MasOS 12.3+.
120
+ # check `getattr` and try it for compatibility
121
+ @staticmethod
122
+ def has_mps() -> bool:
123
+ if not torch.backends.mps.is_available():
124
+ return False
125
+ try:
126
+ torch.zeros(1).to(torch.device("mps"))
127
+ return True
128
+ except Exception:
129
+ return False
130
+
131
+ @staticmethod
132
+ def has_xpu() -> bool:
133
+ if hasattr(torch, "xpu") and torch.xpu.is_available():
134
+ return True
135
+ else:
136
+ return False
137
+
138
+ def use_fp32_config(self):
139
+ for config_file in version_config_list:
140
+ self.json_config[config_file]["train"]["fp16_run"] = False
141
+ with open(f"configs/inuse/{config_file}", "r") as f:
142
+ strr = f.read().replace("true", "false")
143
+ with open(f"configs/inuse/{config_file}", "w") as f:
144
+ f.write(strr)
145
+ logger.info("overwrite " + config_file)
146
+ self.preprocess_per = 3.0
147
+ logger.info("overwrite preprocess_per to %d" % (self.preprocess_per))
148
+
149
+ def device_config(self) -> tuple:
150
+ if torch.cuda.is_available():
151
+ if self.has_xpu():
152
+ self.device = self.instead = "xpu:0"
153
+ self.is_half = True
154
+ i_device = int(self.device.split(":")[-1])
155
+ self.gpu_name = torch.cuda.get_device_name(i_device)
156
+ if (
157
+ ("16" in self.gpu_name and "V100" not in self.gpu_name.upper())
158
+ or "P40" in self.gpu_name.upper()
159
+ or "P10" in self.gpu_name.upper()
160
+ or "1060" in self.gpu_name
161
+ or "1070" in self.gpu_name
162
+ or "1080" in self.gpu_name
163
+ ):
164
+ logger.info("Found GPU %s, force to fp32", self.gpu_name)
165
+ self.is_half = False
166
+ self.use_fp32_config()
167
+ else:
168
+ logger.info("Found GPU %s", self.gpu_name)
169
+ self.gpu_mem = int(
170
+ torch.cuda.get_device_properties(i_device).total_memory
171
+ / 1024
172
+ / 1024
173
+ / 1024
174
+ + 0.4
175
+ )
176
+ if self.gpu_mem <= 4:
177
+ self.preprocess_per = 3.0
178
+ elif self.has_mps():
179
+ logger.info("No supported Nvidia GPU found")
180
+ self.device = self.instead = "mps"
181
+ self.is_half = False
182
+ self.use_fp32_config()
183
+ else:
184
+ logger.info("No supported Nvidia GPU found")
185
+ self.device = self.instead = "cpu"
186
+ self.is_half = False
187
+ self.use_fp32_config()
188
+
189
+ if self.n_cpu == 0:
190
+ self.n_cpu = cpu_count()
191
+
192
+ if self.is_half:
193
+ # 6G显存配置
194
+ x_pad = 3
195
+ x_query = 10
196
+ x_center = 60
197
+ x_max = 65
198
+ else:
199
+ # 5G显存配置
200
+ x_pad = 1
201
+ x_query = 6
202
+ x_center = 38
203
+ x_max = 41
204
+
205
+ if self.gpu_mem is not None and self.gpu_mem <= 4:
206
+ x_pad = 1
207
+ x_query = 5
208
+ x_center = 30
209
+ x_max = 32
210
+ if self.dml:
211
+ logger.info("Use DirectML instead")
212
+ if (
213
+ os.path.exists(
214
+ "runtime\Lib\site-packages\onnxruntime\capi\DirectML.dll"
215
+ )
216
+ == False
217
+ ):
218
+ try:
219
+ os.rename(
220
+ "runtime\Lib\site-packages\onnxruntime",
221
+ "runtime\Lib\site-packages\onnxruntime-cuda",
222
+ )
223
+ except:
224
+ pass
225
+ try:
226
+ os.rename(
227
+ "runtime\Lib\site-packages\onnxruntime-dml",
228
+ "runtime\Lib\site-packages\onnxruntime",
229
+ )
230
+ except:
231
+ pass
232
+ # if self.device != "cpu":
233
+ import torch_directml
234
+
235
+ self.device = torch_directml.device(torch_directml.default_device())
236
+ self.is_half = False
237
+ else:
238
+ if self.instead:
239
+ logger.info(f"Use {self.instead} instead")
240
+ if (
241
+ os.path.exists(
242
+ "runtime\Lib\site-packages\onnxruntime\capi\onnxruntime_providers_cuda.dll"
243
+ )
244
+ == False
245
+ ):
246
+ try:
247
+ os.rename(
248
+ "runtime\Lib\site-packages\onnxruntime",
249
+ "runtime\Lib\site-packages\onnxruntime-dml",
250
+ )
251
+ except:
252
+ pass
253
+ try:
254
+ os.rename(
255
+ "runtime\Lib\site-packages\onnxruntime-cuda",
256
+ "runtime\Lib\site-packages\onnxruntime",
257
+ )
258
+ except:
259
+ pass
260
+ logger.info(
261
+ "Half-precision floating-point: %s, device: %s"
262
+ % (self.is_half, self.device)
263
+ )
264
+ return x_pad, x_query, x_center, x_max
configs/inuse/.gitignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ *
2
+ !.gitignore
3
+ !v1
4
+ !v2
configs/inuse/v1/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *
2
+ !.gitignore
configs/inuse/v2/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *
2
+ !.gitignore
configs/v1/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": 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,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
+ }
configs/v1/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": 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": 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
+ }
configs/v1/48k.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": 11520,
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": 48000,
21
+ "filter_length": 2048,
22
+ "hop_length": 480,
23
+ "win_length": 2048,
24
+ "n_mel_channels": 128,
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,6,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
+ }
configs/v2/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": 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
+ }
configs/v2/48k.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": 17280,
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": 48000,
21
+ "filter_length": 2048,
22
+ "hop_length": 480,
23
+ "win_length": 2048,
24
+ "n_mel_channels": 128,
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": [12,10,2,2],
40
+ "upsample_initial_channel": 512,
41
+ "upsample_kernel_sizes": [24,20,4,4],
42
+ "use_spectral_norm": false,
43
+ "gin_channels": 256,
44
+ "spk_embed_dim": 109
45
+ }
46
+ }
docker-compose.yml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: "3.8"
2
+ services:
3
+ rvc:
4
+ build:
5
+ context: .
6
+ dockerfile: Dockerfile
7
+ container_name: rvc
8
+ volumes:
9
+ - ./weights:/app/assets/weights
10
+ - ./opt:/app/opt
11
+ # - ./dataset:/app/dataset # you can use this folder in order to provide your dataset for model training
12
+ ports:
13
+ - 7865:7865
14
+ deploy:
15
+ resources:
16
+ reservations:
17
+ devices:
18
+ - driver: nvidia
19
+ count: 1
20
+ capabilities: [gpu]
docs/cn/Changelog_CN.md ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### 20231006更新
2
+
3
+ 我们制作了一个用于实时变声的界面go-realtime-gui.bat/gui_v1.py(事实上早就存在了),本次更新重点也优化了实时变声的性能。对比0813版:
4
+ - 1、优优化界面操作:参数热更新(调整参数不需要中止再启动),懒加载模型(已加载过的模型不需要重新加载),增加响度因子参数(响度向输入音频靠近)
5
+ - 2、优化自带降噪效果与速度
6
+ - 3、大幅优化推理速度
7
+
8
+ 注意输入输出设备应该选择同种类型,例如都选MME类型。
9
+
10
+ 1006版本整体的更新为:
11
+ - 1、继续提升rmvpe音高提取算法效果,对于男低音有更大的提升
12
+ - 2、优化推理界面布局
13
+
14
+ ### 20230813更新
15
+ 1-常规bug修复
16
+ - 保存频率总轮数最低改为1 总轮数最低改为2
17
+ - 修复无pretrain模型训练报错
18
+ - 增加伴奏人声分离完毕清理显存
19
+ - faiss保存路径绝对路径改为相对路径
20
+ - 支持路径包含空格(训练集路径+实验名称均支持,不再会报错)
21
+ - filelist取消强制utf8编码
22
+ - 解决实时变声中开启索引导致的CPU极大占用问题
23
+
24
+ 2-重点更新
25
+ - 训练出当前最强开源人声音高提取模型RMVPE,并用于RVC的训练、离线/实时推理,支持pytorch/onnx/DirectML
26
+ - 通过pytorch-dml支持A卡和I卡的
27
+ (1)实时变声(2)推理(3)人声伴奏分离(4)训练暂未支持,会切换至CPU训练;通过onnx_dml支持rmvpe_gpu的推理
28
+
29
+ ### 20230618更新
30
+ - v2增加32k和48k两个新预训练模型
31
+ - 修复非f0模型推理报错
32
+ - 对于超过一小时的训练集的索引建立环节,自动kmeans缩小特征处理以加速索引训练、加入和查询
33
+ - 附送一个人声转吉他玩具仓库
34
+ - 数据处理剔除异常值切片
35
+ - onnx导出选项卡
36
+
37
+ 失败的实验:
38
+ - ~~特征检索增加时序维度:寄,没啥效果~~
39
+ - ~~特征检索增加PCAR降维可选项:寄,数据大用kmeans缩小数据量,数据小降维操作耗时比省下的匹配耗时还多~~
40
+ - ~~支持onnx推理(附带仅推理的小压缩包):寄,生成nsf还是需要pytorch~~
41
+ - ~~训练时在音高、gender、eq、噪声等方面对输入进行随机增强:寄,没啥效果~~
42
+ - ~~接入小型声码器调研:寄,效果变差~~
43
+
44
+ todolist:
45
+ - ~~训练集音高识别支持crepe:已经被RMVPE取代,不需要~~
46
+ - ~~多进程harvest推理:已经被RMVPE取代,不需要~~
47
+ - ~~crepe的精度支持和RVC-config同步:已经被RMVPE取代,不需要。支持这个还要同步torchcrepe的库,麻烦~~
48
+ - 对接F0编辑器
49
+
50
+
51
+ ### 20230528更新
52
+ - 增加v2的jupyter notebook,韩文changelog,增加一些环境依赖
53
+ - 增加呼吸、清辅音、齿音保护模式
54
+ - 支持crepe-full推理
55
+ - UVR5人声伴奏分离加上3个去延迟模型和MDX-Net去混响模型,增加HP3人声提取模型
56
+ - 索引名称增加版本和实验名称
57
+ - 人声伴奏分离、推理批量导出增加音频导出格式选项
58
+ - 废弃32k模型的训练
59
+
60
+ ### 20230513更新
61
+ - 清除一键包内部老版本runtime内残留的lib.infer_pack和uvr5_pack
62
+ - 修复训练集预处理伪多进程的bug
63
+ - 增加harvest识别音高可选通过中值滤波削弱哑音现象,可调整中值滤波半径
64
+ - 导出音频增加后处理重采样
65
+ - 训练n_cpu进程数从"仅调整f0提取"改为"调整数据预处理和f0提取"
66
+ - 自动检测logs文件夹下的index路径,提供下拉列表功能
67
+ - tab页增加"常见问题解答"(也可参考github-rvc-wiki)
68
+ - 相同路径的输入音频推理增加了音高缓存(用途:使用harvest音高提取,整个pipeline会经历漫长且重复的音高提取过程,如果不使用缓存,实验不同音色、索引、音高中值滤波半径参数的用户在第一次测试后的等待结果会非常痛苦)
69
+
70
+ ### 20230514更新
71
+ - 音量包络对齐输入混合(可以缓解“输入静音输出小幅度噪声”的问题。如果输入音频背景底噪大则不建议开启,默认不开启(值为1可视为不开启))
72
+ - 支持按照指定频率保存提取的小模型(假如你想尝试不同epoch下的推理效果,但是不想保存所有大checkpoint并且每次都要ckpt手工处理提取小模型,这项功能会非常实用)
73
+ - 通过设置环境变量解决服务端开了系统全局代理导致浏览器连接错误的问题
74
+ - 支持v2预训练模型(目前只公开了40k版本进行测试,另外2个采样率还没有训练完全)
75
+ - 推理前限制超过1的过大音量
76
+ - 微调数据预处理参数
77
+
78
+
79
+ ### 20230409更新
80
+ - 修正训练参数,提升显卡平均利用率,A100最高从25%提升至90%左右,V100:50%->90%左右,2060S:60%->85%左右,P40:25%->95%左右,训练速度显著提升
81
+ - 修正参数:总batch_size改为每张卡的batch_size
82
+ - 修正total_epoch:最大限制100解锁至1000;默认10提升至默认20
83
+ - 修复ckpt提取识别是否带音高错误导致推理异常的问题
84
+ - 修复分布式训练每个rank都保存一次ckpt���问题
85
+ - 特征提取进行nan特征过滤
86
+ - 修复静音输入输出随机辅音or噪声的问题(老版模型需要重做训练集重训)
87
+
88
+ ### 20230416更新
89
+ - 新增本地实时变声迷你GUI,双击go-realtime-gui.bat启动
90
+ - 训练推理均对<50Hz的频段进行滤波过滤
91
+ - 训练推理音高提取pyworld最低音高从默认80下降至50,50-80hz间的男声低音不会哑
92
+ - WebUI支持根据系统区域变更语言(现支持en_US,ja_JP,zh_CN,zh_HK,zh_SG,zh_TW,不支持的默认en_US)
93
+ - 修正部分显卡识别(例如V100-16G识别失败,P4识别失败)
94
+
95
+ ### 20230428更新
96
+ - 升级faiss索引设置,速度更快,质量更高
97
+ - 取消total_npy依赖,后续分享模型不再需要填写total_npy
98
+ - 解锁16系限制。4G显存GPU给到4G的推理设置。
99
+ - 修复部分音频格式下UVR5人声伴奏分离的bug
100
+ - 实时变声迷你gui增加对非40k与不懈怠音高模型的支持
101
+
102
+ ### 后续计划:
103
+ 功能:
104
+ - 支持多人训练选项卡(至多4人)
105
+
106
+ 底模:
107
+ - 收集呼吸wav加入训练集修正呼吸变声电音的问题
108
+ - 我们正在训练增加了歌声训练集的底模,未来会公开
109
+
docs/cn/faq.md ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Q1:ffmpeg error/utf8 error.
2
+
3
+ 大概率不是ffmpeg问题,而是音频路径问题;<br>
4
+ ffmpeg读取路径带空格、()等特殊符号,可能出现ffmpeg error;训练集音频带中文路径,在写入filelist.txt的时候可能出现utf8 error;<br>
5
+
6
+ ## Q2:一键训练结束没有索引
7
+
8
+ 显示"Training is done. The program is closed."则模型训练成功,后续紧邻的报错是假的;<br>
9
+
10
+ 一键训练结束完成没有added开头的索引文件,可能是因为训练集太大卡住了添加索引的步骤;已通过批处理add索引解决内存add索引对内存需求过大的问题。临时可尝试再次点击"训练索引"按钮。<br>
11
+
12
+ ## Q3:训练结束推理没看到训练集的音色
13
+ 点刷新音色再看看,如果还没有看看训练有没有报错,控制台和webui的截图,logs/实验名下的log,都可以发给开发者看看。<br>
14
+
15
+ ## Q4:如何分享模型
16
+   rvc_root/logs/实验名 下面存储的pth不是用来分享模型用来推理的,而是为了存储实验状态供复现,以及继续训练用的。用来分享的模型应该是weights文件夹下大小为60+MB的pth文件;<br>
17
+   后续将把weights/exp_name.pth和logs/exp_name/added_xxx.index合并打包成weights/exp_name.zip省去填写index的步骤,那么zip文件用来分享,不要分享pth文件,除非是想换机器继续训练;<br>
18
+   如果你把logs文件夹下的几百MB的pth文件复制/分享到weights文件夹下强行用于推理,可能会出现f0,tgt_sr等各种key不存在的报错。你需要用ckpt选项卡最下面,手工或自动(本地logs下如果能找到相关信息则会自动)选择是否携带音高、目标音频采样率的选项后进行ckpt小模型提取(输入路径填G开头的那个),提取完在weights文件夹下会出现60+MB的pth文件,刷新音色后可以选择使用。<br>
19
+
20
+ ## Q5:Connection Error.
21
+ 也许你关闭了控制台(黑色窗口)。<br>
22
+
23
+ ## Q6:WebUI弹出Expecting value: line 1 column 1 (char 0).
24
+ 请关闭系统局域网代理/全局代理。<br>
25
+
26
+ 这个不仅是客户端的代理,也包括服务端的代理(例如你使用autodl设置了http_proxy和https_proxy学术加速,使用时也需要unset关掉)<br>
27
+
28
+ ## Q7:不用WebUI如何通过命令训练推理
29
+ 训练脚本:<br>
30
+ 可先跑通WebUI,消息窗内会显示数据集处理和训练用命令行;<br>
31
+
32
+ 推理脚本:<br>
33
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py<br>
34
+
35
+ 例子:<br>
36
+
37
+ runtime\python.exe myinfer.py 0 "E:\codes\py39\RVC-beta\todo-songs\1111.wav" "E:\codes\py39\logs\mi-test\added_IVF677_Flat_nprobe_7.index" harvest "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True<br>
38
+
39
+ f0up_key=sys.argv[1]<br>
40
+ input_path=sys.argv[2]<br>
41
+ index_path=sys.argv[3]<br>
42
+ f0method=sys.argv[4]#harvest or pm<br>
43
+ opt_path=sys.argv[5]<br>
44
+ model_path=sys.argv[6]<br>
45
+ index_rate=float(sys.argv[7])<br>
46
+ device=sys.argv[8]<br>
47
+ is_half=bool(sys.argv[9])<br>
48
+
49
+ ## Q8:Cuda error/Cuda out of memory.
50
+ 小概率是cuda配置问题、设备不支持;大概率是显存不够(out of memory);<br>
51
+
52
+ 训练的话缩小batch size(如果缩小到1还不够只能更换显卡训练),推理的话酌情缩小config.py结尾的x_pad,x_query,x_center,x_max。4G以下显存(例如1060(3G)和各种2G显卡)可以直接放弃,4G显存显卡还有救。<br>
53
+
54
+ ## Q9:total_epoch调多少比较好
55
+
56
+ 如果训练集音质差底噪大,20~30足够了,调太高,底模音质无法带高你的低音质训练集<br>
57
+ 如果训练集音质高底噪低时长多,可以调高,200是ok的(训练速度很快,既然你有条件准备高音质训练集,显卡想必条件也不错,肯定不在乎多一些训练时间)<br>
58
+
59
+ ## Q10:需要多少训练集时长
60
+   推荐10min至50min<br>
61
+   保证音质高底噪低的情况下,如果有个人特色的音色统一,则多多益善<br>
62
+   高水平的训练集(精简+音色有特色),5min至10min也是ok的,仓库作者本人就经常这么玩<br>
63
+   也有人拿1min至2min的数据来训练并且训练成功的,但是成功经验是其他人不可复现的,不太具备参考价值。这要求训练集音色特色非常明显(比如说高频气声较明显的萝莉少女音),且音质高;<br>
64
+   1min以下时长数据目前没见有人尝试(成功)过。不建议进行这种鬼畜行为。<br>
65
+
66
+ ## Q11:index rate干嘛用的,怎么调(科普)
67
+   如果底模和推理源的音质高于训练集的音质,他们可以带高推理结果的音质,但代价可能是音色往底模/推理源的音色靠,这种现象叫做"音色泄露";<br>
68
+   index rate用来削减/解决音色泄露问题。调到1,则理论上不存在推理源的音色泄露问题,但音质更倾向于训练集。如果训练集音质比推理源低,则index rate调高可能降低音质。调到0,则不具备利用检索混合来保护训练集音色的效果;<br>
69
+   如果训练集优质时长多,可调高total_epoch,此时模型本身不太会引用推理源和底模的音色,很少存在"音色泄露"问题,此时index_rate不重要,你甚至可以不建立/分享index索引文件。<br>
70
+
71
+ ## Q11:推理怎么选gpu
72
+ config.py文件里device cuda:后面选择卡号;<br>
73
+ 卡号和显卡的映射关系,在训练选项卡的显卡信息栏里能看到。<br>
74
+
75
+ ## Q12:如何推理训练中间保存的pth
76
+ 通过ckpt选项卡最下面提取小模型。<br>
77
+
78
+
79
+ ## Q13:如何中断和继续训练
80
+ 现阶段只能关闭WebUI控制台双击go-web.bat重启程序。网页参数也要刷新重新填写;<br>
81
+ 继续训练:相同网页参数点训练模型,就会接着上次的checkpoint继续训练。<br>
82
+
83
+ ## Q14:训练时出现文件页面/内存error
84
+ 进程开太多了,内存炸了。你可能可以通过如下方式解决<br>
85
+ 1、"提取音高和处理数据使用的CPU进程数" 酌情拉低;<br>
86
+ 2、训练集音频手工切一下,不要太长。<br>
87
+
88
+
89
+ ## Q15:如何中途加数据训练
90
+ 1、所有数据新建一个实验名;<br>
91
+ 2、拷贝上一次的最新的那个G和D文件(或者你想基于哪个中间ckpt训练,也可以拷贝中间的)到新实验名;下<br>
92
+ 3、一键训练新实验名,他会继续上一次的最新进度训练。<br>
93
+
94
+ ## Q16: error about llvmlite.dll
95
+
96
+ OSError: Could not load shared object file: llvmlite.dll
97
+
98
+ FileNotFoundError: Could not find module lib\site-packages\llvmlite\binding\llvmlite.dll (or one of its dependencies). Try using the full path with constructor syntax.
99
+
100
+ win平台会报这个错,装上https://aka.ms/vs/17/release/vc_redist.x64.exe这个再重启WebUI就好了。
101
+
102
+ ## Q17: RuntimeError: The expanded size of the tensor (17280) must match the existing size (0) at non-singleton dimension 1. Target sizes: [1, 17280]. Tensor sizes: [0]
103
+
104
+ wavs16k文件夹下,找到文件大小显著比其他都小的一些音频文件,删掉,点击训练模型,就不会报错了,不过由于一键流程中断了你训练完模型还要点训练索引。
105
+
106
+ ## Q18: RuntimeError: The size of tensor a (24) must match the size of tensor b (16) at non-singleton dimension 2
107
+
108
+ 不要中途变更采样率继续训练。如果一定要变更,应更换实验名从头训练。当然你也可以把上次提取的音高和特征(0/1/2/2b folders)拷贝过去加速训练流程。
docs/en/Changelog_EN.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### 2023-10-06
2
+ - We have created a GUI for real-time voice change: go-realtime-gui.bat/gui_v1.py (Note that you should choose the same type of input and output device, e.g. MME and MME).
3
+ - We trained a better pitch extract RMVPE model.
4
+ - Optimize inference GUI layout.
5
+
6
+ ### 2023-08-13
7
+ 1-Regular bug fix
8
+ - Change the minimum total epoch number to 1, and change the minimum total epoch number to 2
9
+ - Fix training errors of not using pre-train models
10
+ - After accompaniment vocals separation, clear graphics memory
11
+ - Change faiss save path absolute path to relative path
12
+ - Support path containing spaces (both training set path and experiment name are supported, and errors will no longer be reported)
13
+ - Filelist cancels mandatory utf8 encoding
14
+ - Solve the CPU consumption problem caused by faiss searching during real-time voice changes
15
+
16
+ 2-Key updates
17
+ - Train the current strongest open-source vocal pitch extraction model RMVPE, and use it for RVC training, offline/real-time inference, supporting PyTorch/Onnx/DirectML
18
+ - Support for AMD and Intel graphics cards through Pytorch_DML
19
+
20
+ (1) Real time voice change (2) Inference (3) Separation of vocal accompaniment (4) Training not currently supported, will switch to CPU training; supports RMVPE inference of gpu by Onnx_Dml
21
+
22
+
23
+ ### 2023-06-18
24
+ - New pretrained v2 models: 32k and 48k
25
+ - Fix non-f0 model inference errors
26
+ - For training-set exceeding 1 hour, do automatic minibatch-kmeans to reduce feature shape, so that index training, adding, and searching will be much faster.
27
+ - Provide a toy vocal2guitar huggingface space
28
+ - Auto delete outlier short cut training-set audios
29
+ - Onnx export tab
30
+
31
+ Failed experiments:
32
+ - ~~Feature retrieval: add temporal feature retrieval: not effective~~
33
+ - ~~Feature retrieval: add PCAR dimensionality reduction: searching is even slower~~
34
+ - ~~Random data augmentation when training: not effective~~
35
+
36
+ todolist:
37
+ - ~~Vocos-RVC (tiny vocoder): not effective~~
38
+ - ~~Crepe support for training:replaced by RMVPE~~
39
+ - ~~Half precision crepe inference:replaced by RMVPE. And hard to achive.~~
40
+ - F0 editor support
41
+
42
+ ### 2023-05-28
43
+ - Add v2 jupyter notebook, korean changelog, fix some environment requirments
44
+ - Add voiceless consonant and breath protection mode
45
+ - Support crepe-full pitch detect
46
+ - UVR5 vocal separation: support dereverb models and de-echo models
47
+ - Add experiment name and version on the name of index
48
+ - Support users to manually select export format of output audios when batch voice conversion processing and UVR5 vocal separation
49
+ - v1 32k model training is no more supported
50
+
51
+ ### 2023-05-13
52
+ - Clear the redundant codes in the old version of runtime in the one-click-package: lib.infer_pack and uvr5_pack
53
+ - Fix pseudo multiprocessing bug in training set preprocessing
54
+ - Adding median filtering radius adjustment for harvest pitch recognize algorithm
55
+ - Support post processing resampling for exporting audio
56
+ - Multi processing "n_cpu" setting for training is changed from "f0 extraction" to "data preprocessing and f0 extraction"
57
+ - Automatically detect the index paths under the logs folder and provide a drop-down list function
58
+ - Add "Frequently Asked Questions and Answers" on the tab page (you can also refer to github RVC wiki)
59
+ - When inference, harvest pitch is cached when using same input audio path (purpose: using harvest pitch extraction, the entire pipeline will go through a long and repetitive pitch extraction process. If caching is not used, users who experiment with different timbre, index, and pitch median filtering radius settings will experience a very painful waiting process after the first inference)
60
+
61
+ ### 2023-05-14
62
+ - Use volume envelope of input to mix or replace the volume envelope of output (can alleviate the problem of "input muting and output small amplitude noise". If the input audio background noise is high, it is not recommended to turn it on, and it is not turned on by default (1 can be considered as not turned on)
63
+ - Support saving extracted small models at a specified frequency (if you want to see the performance under different epochs, but do not want to save all large checkpoints and manually extract small models by ckpt-processing every time, this feature will be very practical)
64
+ - Resolve the issue of "connection errors" caused by the server's global proxy by setting environment variables
65
+ - Supports pre-trained v2 models (currently only 40k versions are publicly available for testing, and the other two sampling rates have not been fully trained yet)
66
+ - Limit excessive volume exceeding 1 before inference
67
+ - Slightly adjusted the settings of training-set preprocessing
68
+
69
+
70
+ #######################
71
+
72
+ History changelogs:
73
+
74
+ ### 2023-04-09
75
+ - Fixed training parameters to improve GPU utilization rate: A100 increased from 25% to around 90%, V100: 50% to around 90%, 2060S: 60% to around 85%, P40: 25% to around 95%; significantly improved training speed
76
+ - Changed parameter: total batch_size is now per GPU batch_size
77
+ - Changed total_epoch: maximum limit increased from 100 to 1000; default increased from 10 to 20
78
+ - Fixed issue of ckpt extraction recognizing pitch incorrectly, causing abnormal inference
79
+ - Fixed issue of distributed training saving ckpt for each rank
80
+ - Applied nan feature filtering for feature extraction
81
+ - Fixed issue with silent input/output producing random consonants or noise (old models need to retrain with a new dataset)
82
+
83
+ ### 2023-04-16 Update
84
+ - Added local real-time voice changing mini-GUI, start by double-clicking go-realtime-gui.bat
85
+ - Applied filtering for frequency bands below 50Hz during training and inference
86
+ - Lowered the minimum pitch extraction of pyworld from the default 80 to 50 for training and inference, allowing male low-pitched voices between 50-80Hz not to be muted
87
+ - WebUI supports changing languages according to system locale (currently supporting en_US, ja_JP, zh_CN, zh_HK, zh_SG, zh_TW; defaults to en_US if not supported)
88
+ - Fixed recognition of some GPUs (e.g., V100-16G recognition failure, P4 recognition failure)
89
+
90
+ ### 2023-04-28 Update
91
+ - Upgraded faiss index settings for faster speed and higher quality
92
+ - Removed dependency on total_npy; future model sharing will not require total_npy input
93
+ - Unlocked restrictions for the 16-series GPUs, providing 4GB inference settings for 4GB VRAM GPUs
94
+ - Fixed bug in UVR5 vocal accompaniment separation for certain audio formats
95
+ - Real-time voice changing mini-GUI now supports non-40k and non-lazy pitch models
96
+
97
+ ### Future Plans:
98
+ Features:
99
+ - Add option: extract small models for each epoch save
100
+ - Add option: export additional mp3 to the specified path during inference
101
+ - Support multi-person training tab (up to 4 people)
102
+
103
+ Base model:
104
+ - Collect breathing wav files to add to the training dataset to fix the issue of distorted breath sounds
105
+ - We are currently training a base model with an extended singing dataset, which will be released in the future
docs/en/README.en.md ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ <h1>Retrieval-based-Voice-Conversion-WebUI</h1>
4
+ An easy-to-use voice conversion framework based on VITS.<br><br>
5
+
6
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange
7
+ )](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
8
+
9
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
10
+
11
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
12
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
13
+ [![Licence](https://img.shields.io/github/license/RVC-Project/Retrieval-based-Voice-Conversion-WebUI?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
14
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
15
+
16
+ [![Discord](https://img.shields.io/badge/RVC%20Developers-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
17
+
18
+ [**Changelog**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/Changelog_EN.md) | [**FAQ (Frequently Asked Questions)**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/FAQ-(Frequently-Asked-Questions))
19
+
20
+ [**English**](../en/README.en.md) | [**中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Français**](../fr/README.fr.md) | [**Türkçe**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
21
+
22
+ </div>
23
+
24
+ > The base model is trained using nearly 50 hours of high-quality open-source VCTK training set. Therefore, there are no copyright concerns, please feel free to use.
25
+
26
+ > Please look forward to the base model of RVCv3 with larger parameters, larger dataset, better effects, basically flat inference speed, and less training data required.
27
+
28
+ > There's a [one-click downloader](https://github.com/RVC-Project/RVC-Models-Downloader) for models/integration packages/tools. Welcome to try.
29
+
30
+ <table>
31
+ <tr>
32
+ <td align="center">Training and inference Webui</td>
33
+ <td align="center">Real-time voice changing GUI</td>
34
+ </tr>
35
+ <tr>
36
+ <td align="center"><img src="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/129054828/092e5c12-0d49-4168-a590-0b0ef6a4f630"></td>
37
+ <td align="center"><img src="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/129054828/730b4114-8805-44a1-ab1a-04668f3c30a6"></td>
38
+ </tr>
39
+ <tr>
40
+ <td align="center">go-web.bat</td>
41
+ <td align="center">go-realtime-gui.bat</td>
42
+ </tr>
43
+ <tr>
44
+ <td align="center">You can freely choose the action you want to perform.</td>
45
+ <td align="center">We have achieved an end-to-end latency of 170ms. With the use of ASIO input and output devices, we have managed to achieve an end-to-end latency of 90ms, but it is highly dependent on hardware driver support.</td>
46
+ </tr>
47
+ </table>
48
+
49
+ ## Features:
50
+ + Reduce tone leakage by replacing the source feature to training-set feature using top1 retrieval;
51
+ + Easy + fast training, even on poor graphics cards;
52
+ + Training with a small amounts of data (>=10min low noise speech recommended);
53
+ + Model fusion to change timbres (using ckpt processing tab->ckpt merge);
54
+ + Easy-to-use WebUI;
55
+ + UVR5 model to quickly separate vocals and instruments;
56
+ + High-pitch Voice Extraction Algorithm [InterSpeech2023-RMVPE](#Credits) to prevent a muted sound problem. Provides the best results (significantly) and is faster with lower resource consumption than Crepe_full;
57
+ + AMD/Intel graphics cards acceleration supported;
58
+ + Intel ARC graphics cards acceleration with IPEX supported.
59
+
60
+ Check out our [Demo Video](https://www.bilibili.com/video/BV1pm4y1z7Gm/) here!
61
+
62
+ ## Environment Configuration
63
+ ### Python Version Limitation
64
+ > It is recommended to use conda to manage the Python environment.
65
+
66
+ > For the reason of the version limitation, please refer to this [bug](https://github.com/facebookresearch/fairseq/issues/5012).
67
+
68
+ ```bash
69
+ python --version # 3.8 <= Python < 3.11
70
+ ```
71
+
72
+ ### Linux/MacOS One-click Dependency Installation & Startup Script
73
+ By executing `run.sh` in the project root directory, you can configure the `venv` virtual environment, automatically install the required dependencies, and start the main program with one click.
74
+ ```bash
75
+ sh ./run.sh
76
+ ```
77
+
78
+ ### Manual Installation of Dependencies
79
+ 1. Install `pytorch` and its core dependencies, skip if already installed. Refer to: https://pytorch.org/get-started/locally/
80
+ ```bash
81
+ pip install torch torchvision torchaudio
82
+ ```
83
+ 2. If you are using Nvidia Ampere architecture (RTX30xx) in Windows, according to the experience of #21, you need to specify the cuda version corresponding to pytorch.
84
+ ```bash
85
+ pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
86
+ ```
87
+ 3. Install the corresponding dependencies according to your own graphics card.
88
+ - Nvidia GPU
89
+ ```bash
90
+ pip install -r requirements.txt
91
+ ```
92
+ - AMD/Intel GPU
93
+ ```bash
94
+ pip install -r requirements-dml.txt
95
+ ```
96
+ - AMD ROCM (Linux)
97
+ ```bash
98
+ pip install -r requirements-amd.txt
99
+ ```
100
+ - Intel IPEX (Linux)
101
+ ```bash
102
+ pip install -r requirements-ipex.txt
103
+ ```
104
+
105
+ ## Preparation of Other Files
106
+ ### 1. Assets
107
+ > RVC requires some models located in the `assets` folder for inference and training.
108
+ #### Check/Download Automatically (Default)
109
+ > By default, RVC can automatically check the integrity of the required resources when the main program starts.
110
+
111
+ > Even if the resources are not complete, the program will continue to start.
112
+
113
+ - If you want to download all resources, please add the `--update` parameter.
114
+ - If you want to skip the resource integrity check at startup, please add the `--nocheck` parameter.
115
+
116
+ #### Download Manually
117
+ > All resource files are located in [Hugging Face space](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
118
+
119
+ > You can find some scripts to download them in the `tools` folder
120
+
121
+ > You can also use the [one-click downloader](https://github.com/RVC-Project/RVC-Models-Downloader) for models/integration packages/tools
122
+
123
+ Below is a list that includes the names of all pre-models and other files required by RVC.
124
+
125
+ - ./assets/hubert/hubert_base.pt
126
+ ```bash
127
+ rvcmd assets/hubert # RVC-Models-Downloader command
128
+ ```
129
+ - ./assets/pretrained
130
+ ```bash
131
+ rvcmd assets/v1 # RVC-Models-Downloader command
132
+ ```
133
+ - ./assets/uvr5_weights
134
+ ```bash
135
+ rvcmd assets/uvr5 # RVC-Models-Downloader command
136
+ ```
137
+ If you want to use the v2 version of the model, you need to download additional resources in
138
+
139
+ - ./assets/pretrained_v2
140
+ ```bash
141
+ rvcmd assets/v2 # RVC-Models-Downloader command
142
+ ```
143
+
144
+ ### 2. Install ffmpeg tool
145
+ If `ffmpeg` and `ffprobe` have already been installed, you can skip this step.
146
+ #### Ubuntu/Debian
147
+ ```bash
148
+ sudo apt install ffmpeg
149
+ ```
150
+ #### MacOS
151
+ ```bash
152
+ brew install ffmpeg
153
+ ```
154
+ #### Windows
155
+ After downloading, place it in the root directory.
156
+ ```bash
157
+ rvcmd tools/ffmpeg # RVC-Models-Downloader command
158
+ ```
159
+ - [ffmpeg.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe)
160
+
161
+ - [ffprobe.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe)
162
+
163
+ ### 3. Download the required files for the rmvpe vocal pitch extraction algorithm
164
+
165
+ If you want to use the latest RMVPE vocal pitch extraction algorithm, you need to download the pitch extraction model parameters and place them in `assets/rmvpe`.
166
+
167
+ - [rmvpe.pt](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt)
168
+ ```bash
169
+ rvcmd assets/rmvpe # RVC-Models-Downloader command
170
+ ```
171
+
172
+ #### Download DML environment of RMVPE (optional, for AMD/Intel GPU)
173
+
174
+ - [rmvpe.onnx](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx)
175
+ ```bash
176
+ rvcmd assets/rmvpe # RVC-Models-Downloader command
177
+ ```
178
+
179
+ ### 4. AMD ROCM (optional, Linux only)
180
+
181
+ If you want to run RVC on a Linux system based on AMD's ROCM technology, please first install the required drivers [here](https://rocm.docs.amd.com/en/latest/deploy/linux/os-native/install.html).
182
+
183
+ If you are using Arch Linux, you can use pacman to install the required drivers.
184
+ ````
185
+ pacman -S rocm-hip-sdk rocm-opencl-sdk
186
+ ````
187
+ For some models of graphics cards, you may need to configure the following environment variables (such as: RX6700XT).
188
+ ````
189
+ export ROCM_PATH=/opt/rocm
190
+ export HSA_OVERRIDE_GFX_VERSION=10.3.0
191
+ ````
192
+ Also, make sure your current user is in the `render` and `video` user groups.
193
+ ````
194
+ sudo usermod -aG render $USERNAME
195
+ sudo usermod -aG video $USERNAME
196
+ ````
197
+ ## Getting Started
198
+ ### Direct Launch
199
+ Use the following command to start the WebUI.
200
+ ```bash
201
+ python infer-web.py
202
+ ```
203
+ ### Linux/MacOS
204
+ ```bash
205
+ ./run.sh
206
+ ```
207
+ ### For I-card users who need to use IPEX technology (Linux only)
208
+ ```bash
209
+ source /opt/intel/oneapi/setvars.sh
210
+ ./run.sh
211
+ ```
212
+ ### Using the Integration Package (Windows Users)
213
+ Download and unzip `RVC-beta.7z`. After unzipping, double-click `go-web.bat` to start the program with one click.
214
+ ```bash
215
+ rvcmd packs/general/latest # RVC-Models-Downloader command
216
+ ```
217
+
218
+ ## Credits
219
+ + [ContentVec](https://github.com/auspicious3000/contentvec/)
220
+ + [VITS](https://github.com/jaywalnut310/vits)
221
+ + [HIFIGAN](https://github.com/jik876/hifi-gan)
222
+ + [Gradio](https://github.com/gradio-app/gradio)
223
+ + [FFmpeg](https://github.com/FFmpeg/FFmpeg)
224
+ + [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
225
+ + [audio-slicer](https://github.com/openvpi/audio-slicer)
226
+ + [Vocal pitch extraction:RMVPE](https://github.com/Dream-High/RMVPE)
227
+ + The pretrained model is trained and tested by [yxlllc](https://github.com/yxlllc/RMVPE) and [RVC-Boss](https://github.com/RVC-Boss).
228
+
229
+ ## Thanks to all contributors for their efforts
230
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
231
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
232
+ </a>
docs/en/faiss_tips_en.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ faiss tuning TIPS
2
+ ==================
3
+ # about faiss
4
+ faiss is a library of neighborhood searches for dense vectors, developed by facebook research, which efficiently implements many approximate neighborhood search methods.
5
+ Approximate Neighbor Search finds similar vectors quickly while sacrificing some accuracy.
6
+
7
+ ## faiss in RVC
8
+ In RVC, for the embedding of features converted by HuBERT, we search for embeddings similar to the embedding generated from the training data and mix them to achieve a conversion that is closer to the original speech. However, since this search takes time if performed naively, high-speed conversion is realized by using approximate neighborhood search.
9
+
10
+ # implementation overview
11
+ In '/logs/your-experiment/3_feature256' where the model is located, features extracted by HuBERT from each voice data are located.
12
+ From here we read the npy files in order sorted by filename and concatenate the vectors to create big_npy. (This vector has shape [N, 256].)
13
+ After saving big_npy as /logs/your-experiment/total_fea.npy, train it with faiss.
14
+
15
+ In this article, I will explain the meaning of these parameters.
16
+
17
+ # Explanation of the method
18
+ ## index factory
19
+ An index factory is a unique faiss notation that expresses a pipeline that connects multiple approximate neighborhood search methods as a string.
20
+ This allows you to try various approximate neighborhood search methods simply by changing the index factory string.
21
+ In RVC it is used like this:
22
+
23
+ ```python
24
+ index = faiss.index_factory(256, "IVF%s,Flat" % n_ivf)
25
+ ```
26
+ Among the arguments of index_factory, the first is the number of dimensions of the vector, the second is the index factory string, and the third is the distance to use.
27
+
28
+ For more detailed notation
29
+ https://github.com/facebookresearch/faiss/wiki/The-index-factory
30
+
31
+ ## index for distance
32
+ There are two typical indexes used as similarity of embedding as follows.
33
+
34
+ - Euclidean distance (METRIC_L2)
35
+ - inner product (METRIC_INNER_PRODUCT)
36
+
37
+ Euclidean distance takes the squared difference in each dimension, sums the differences in all dimensions, and then takes the square root. This is the same as the distance in 2D and 3D that we use on a daily basis.
38
+ The inner product is not used as an index of similarity as it is, and the cosine similarity that takes the inner product after being normalized by the L2 norm is generally used.
39
+
40
+ Which is better depends on the case, but cosine similarity is often used in embedding obtained by word2vec and similar image retrieval models learned by ArcFace. If you want to do l2 normalization on vector X with numpy, you can do it with the following code with eps small enough to avoid 0 division.
41
+
42
+ ```python
43
+ X_normed = X / np.maximum(eps, np.linalg.norm(X, ord=2, axis=-1, keepdims=True))
44
+ ```
45
+
46
+ Also, for the index factory, you can change the distance index used for calculation by choosing the value to pass as the third argument.
47
+
48
+ ```python
49
+ index = faiss.index_factory(dimention, text, faiss.METRIC_INNER_PRODUCT)
50
+ ```
51
+
52
+ ## IVF
53
+ IVF (Inverted file indexes) is an algorithm similar to the inverted index in full-text search.
54
+ During learning, the search target is clustered with kmeans, and Voronoi partitioning is performed using the cluster center. Each data point is assigned a cluster, so we create a dictionary that looks up the data points from the clusters.
55
+
56
+ For example, if clusters are assigned as follows
57
+ |index|Cluster|
58
+ |-----|-------|
59
+ |1|A|
60
+ |2|B|
61
+ |3|A|
62
+ |4|C|
63
+ |5|B|
64
+
65
+ The resulting inverted index looks like this:
66
+
67
+ |cluster|index|
68
+ |-------|-----|
69
+ |A|1, 3|
70
+ |B|2, 5|
71
+ |C|4|
72
+
73
+ When searching, we first search n_probe clusters from the clusters, and then calculate the distances for the data points belonging to each cluster.
74
+
75
+ # recommend parameter
76
+ There are official guidelines on how to choose an index, so I will explain accordingly.
77
+ https://github.com/facebookresearch/faiss/wiki/Guidelines-to-choose-an-index
78
+
79
+ For datasets below 1M, 4bit-PQ is the most efficient method available in faiss as of April 2023.
80
+ Combining this with IVF, narrowing down the candidates with 4bit-PQ, and finally recalculating the distance with an accurate index can be described by using the following index factory.
81
+
82
+ ```python
83
+ index = faiss.index_factory(256, "IVF1024,PQ128x4fs,RFlat")
84
+ ```
85
+
86
+ ## Recommended parameters for IVF
87
+ Consider the case of too many IVFs. For example, if coarse quantization by IVF is performed for the number of data, this is the same as a naive exhaustive search and is inefficient.
88
+ For 1M or less, IVF values are recommended between 4*sqrt(N) ~ 16*sqrt(N) for N number of data points.
89
+
90
+ Since the calculation time increases in proportion to the number of n_probes, please consult with the accuracy and choose appropriately. Personally, I don't think RVC needs that much accuracy, so n_probe = 1 is fine.
91
+
92
+ ## FastScan
93
+ FastScan is a method that enables high-speed approximation of distances by Cartesian product quantization by performing them in registers.
94
+ Cartesian product quantization performs clustering independently for each d dimension (usually d = 2) during learning, calculates the distance between clusters in advance, and creates a lookup table. At the time of prediction, the distance of each dimension can be calculated in O(1) by looking at the lookup table.
95
+ So the number you specify after PQ usually specifies half the dimension of the vector.
96
+
97
+ For a more detailed description of FastScan, please refer to the official documentation.
98
+ https://github.com/facebookresearch/faiss/wiki/Fast-accumulation-of-PQ-and-AQ-codes-(FastScan)
99
+
100
+ ## RFlat
101
+ RFlat is an instruction to recalculate the rough distance calculated by FastScan with the exact distance specified by the third argument of index factory.
102
+ When getting k neighbors, k*k_factor points are recalculated.
docs/en/faq_en.md ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Q1:ffmpeg error/utf8 error.
2
+ It is most likely not a FFmpeg issue, but rather an audio path issue;
3
+
4
+ FFmpeg may encounter an error when reading paths containing special characters like spaces and (), which may cause an FFmpeg error; and when the training set's audio contains Chinese paths, writing it into filelist.txt may cause a utf8 error.<br>
5
+
6
+ ## Q2:Cannot find index file after "One-click Training".
7
+ If it displays "Training is done. The program is closed," then the model has been trained successfully, and the subsequent errors are fake;
8
+
9
+ The lack of an 'added' index file after One-click training may be due to the training set being too large, causing the addition of the index to get stuck; this has been resolved by using batch processing to add the index, which solves the problem of memory overload when adding the index. As a temporary solution, try clicking the "Train Index" button again.<br>
10
+
11
+ ## Q3:Cannot find the model in “Inferencing timbre” after training
12
+ Click “Refresh timbre list” and check again; if still not visible, check if there are any errors during training and send screenshots of the console, web UI, and logs/experiment_name/*.log to the developers for further analysis.<br>
13
+
14
+ ## Q4:How to share a model/How to use others' models?
15
+ The pth files stored in rvc_root/logs/experiment_name are not meant for sharing or inference, but for storing the experiment checkpoits for reproducibility and further training. The model to be shared should be the 60+MB pth file in the weights folder;
16
+
17
+ In the future, weights/exp_name.pth and logs/exp_name/added_xxx.index will be merged into a single weights/exp_name.zip file to eliminate the need for manual index input; so share the zip file, not the pth file, unless you want to continue training on a different machine;
18
+
19
+ Copying/sharing the several hundred MB pth files from the logs folder to the weights folder for forced inference may result in errors such as missing f0, tgt_sr, or other keys. You need to use the ckpt tab at the bottom to manually or automatically (if the information is found in the logs/exp_name), select whether to include pitch infomation and target audio sampling rate options and then extract the smaller model. After extraction, there will be a 60+ MB pth file in the weights folder, and you can refresh the voices to use it.<br>
20
+
21
+ ## Q5:Connection Error.
22
+ You may have closed the console (black command line window).<br>
23
+
24
+ ## Q6:WebUI popup 'Expecting value: line 1 column 1 (char 0)'.
25
+ Please disable system LAN proxy/global proxy and then refresh.<br>
26
+
27
+ ## Q7:How to train and infer without the WebUI?
28
+ Training script:<br>
29
+ You can run training in WebUI first, and the command-line versions of dataset preprocessing and training will be displayed in the message window.<br>
30
+
31
+ Inference script:<br>
32
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py<br>
33
+
34
+
35
+ e.g.<br>
36
+
37
+ runtime\python.exe myinfer.py 0 "E:\codes\py39\RVC-beta\todo-songs\1111.wav" "E:\codes\py39\logs\mi-test\added_IVF677_Flat_nprobe_7.index" harvest "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True<br>
38
+
39
+
40
+ f0up_key=sys.argv[1]<br>
41
+ input_path=sys.argv[2]<br>
42
+ index_path=sys.argv[3]<br>
43
+ f0method=sys.argv[4]#harvest or pm<br>
44
+ opt_path=sys.argv[5]<br>
45
+ model_path=sys.argv[6]<br>
46
+ index_rate=float(sys.argv[7])<br>
47
+ device=sys.argv[8]<br>
48
+ is_half=bool(sys.argv[9])<br>
49
+
50
+ ## Q8:Cuda error/Cuda out of memory.
51
+ There is a small chance that there is a problem with the CUDA configuration or the device is not supported; more likely, there is not enough memory (out of memory).<br>
52
+
53
+ For training, reduce the batch size (if reducing to 1 is still not enough, you may need to change the graphics card); for inference, adjust the x_pad, x_query, x_center, and x_max settings in the config.py file as needed. 4G or lower memory cards (e.g. 1060(3G) and various 2G cards) can be abandoned, while 4G memory cards still have a chance.<br>
54
+
55
+ ## Q9:How many total_epoch are optimal?
56
+ If the training dataset's audio quality is poor and the noise floor is high, 20-30 epochs are sufficient. Setting it too high won't improve the audio quality of your low-quality training set.<br>
57
+
58
+ If the training set audio quality is high, the noise floor is low, and there is sufficient duration, you can increase it. 200 is acceptable (since training is fast, and if you're able to prepare a high-quality training set, your GPU likely can handle a longer training duration without issue).<br>
59
+
60
+ ## Q10:How much training set duration is needed?
61
+
62
+ A dataset of around 10min to 50min is recommended.<br>
63
+
64
+ With guaranteed high sound quality and low bottom noise, more can be added if the dataset's timbre is uniform.<br>
65
+
66
+ For a high-level training set (lean + distinctive tone), 5min to 10min is fine.<br>
67
+
68
+ There are some people who have trained successfully with 1min to 2min data, but the success is not reproducible by others and is not very informative. <br>This requires that the training set has a very distinctive timbre (e.g. a high-frequency airy anime girl sound) and the quality of the audio is high;
69
+ Data of less than 1min duration has not been successfully attempted so far. This is not recommended.<br>
70
+
71
+
72
+ ## Q11:What is the index rate for and how to adjust it?
73
+ If the tone quality of the pre-trained model and inference source is higher than that of the training set, they can bring up the tone quality of the inference result, but at the cost of a possible tone bias towards the tone of the underlying model/inference source rather than the tone of the training set, which is generally referred to as "tone leakage".<br>
74
+
75
+ The index rate is used to reduce/resolve the timbre leakage problem. If the index rate is set to 1, theoretically there is no timbre leakage from the inference source and the timbre quality is more biased towards the training set. If the training set has a lower sound quality than the inference source, then a higher index rate may reduce the sound quality. Turning it down to 0 does not have the effect of using retrieval blending to protect the training set tones.<br>
76
+
77
+ If the training set has good audio quality and long duration, turn up the total_epoch, when the model itself is less likely to refer to the inferred source and the pretrained underlying model, and there is little "tone leakage", the index_rate is not important and you can even not create/share the index file.<br>
78
+
79
+ ## Q12:How to choose the gpu when inferring?
80
+ In the config.py file, select the card number after "device cuda:".<br>
81
+
82
+ The mapping between card number and graphics card can be seen in the graphics card information section of the training tab.<br>
83
+
84
+ ## Q13:How to use the model saved in the middle of training?
85
+ Save via model extraction at the bottom of the ckpt processing tab.
86
+
87
+ ## Q14:File/memory error(when training)?
88
+ Too many processes and your memory is not enough. You may fix it by:
89
+
90
+ 1、decrease the input in field "Threads of CPU".
91
+
92
+ 2、pre-cut trainset to shorter audio files.
93
+
94
+ ## Q15: How to continue training using more data
95
+
96
+ step1: put all wav data to path2.
97
+
98
+ step2: exp_name2+path2 -> process dataset and extract feature.
99
+
100
+ step3: copy the latest G and D file of exp_name1 (your previous experiment) into exp_name2 folder.
101
+
102
+ step4: click "train the model", and it will continue training from the beginning of your previous exp model epoch.
103
+
104
+ ## Q16: error about llvmlite.dll
105
+
106
+ OSError: Could not load shared object file: llvmlite.dll
107
+
108
+ FileNotFoundError: Could not find module lib\site-packages\llvmlite\binding\llvmlite.dll (or one of its dependencies). Try using the full path with constructor syntax.
109
+
110
+ The issue will happen in windows, install https://aka.ms/vs/17/release/vc_redist.x64.exe and it will be fixed.
111
+
112
+ ## Q17: RuntimeError: The expanded size of the tensor (17280) must match the existing size (0) at non-singleton dimension 1. Target sizes: [1, 17280]. Tensor sizes: [0]
113
+
114
+ Delete the wav files whose size is significantly smaller than others, and that won't happen again. Than click "train the model"and "train the index".
115
+
116
+ ## Q18: RuntimeError: The size of tensor a (24) must match the size of tensor b (16) at non-singleton dimension 2
117
+
118
+ Do not change the sampling rate and then continue training. If it is necessary to change, the exp name should be changed and the model will be trained from scratch. You can also copy the pitch and features (0/1/2/2b folders) extracted last time to accelerate the training process.
119
+
docs/en/training_tips_en.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Instructions and tips for RVC training
2
+ ======================================
3
+ This TIPS explains how data training is done.
4
+
5
+ # Training flow
6
+ I will explain along the steps in the training tab of the GUI.
7
+
8
+ ## step1
9
+ Set the experiment name here.
10
+
11
+ You can also set here whether the model should take pitch into account.
12
+ If the model doesn't consider pitch, the model will be lighter, but not suitable for singing.
13
+
14
+ Data for each experiment is placed in `/logs/your-experiment-name/`.
15
+
16
+ ## step2a
17
+ Loads and preprocesses audio.
18
+
19
+ ### load audio
20
+ If you specify a folder with audio, the audio files in that folder will be read automatically.
21
+ For example, if you specify `C:Users\hoge\voices`, `C:Users\hoge\voices\voice.mp3` will be loaded, but `C:Users\hoge\voices\dir\voice.mp3` will Not loaded.
22
+
23
+ Since ffmpeg is used internally for reading audio, if the extension is supported by ffmpeg, it will be read automatically.
24
+ After converting to int16 with ffmpeg, convert to float32 and normalize between -1 to 1.
25
+
26
+ ### denoising
27
+ The audio is smoothed by scipy's filtfilt.
28
+
29
+ ### Audio Split
30
+ First, the input audio is divided by detecting parts of silence that last longer than a certain period (max_sil_kept=5 seconds?). After splitting the audio on silence, split the audio every 4 seconds with an overlap of 0.3 seconds. For audio separated within 4 seconds, after normalizing the volume, convert the wav file to `/logs/your-experiment-name/0_gt_wavs` and then convert it to 16k sampling rate to `/logs/your-experiment-name/1_16k_wavs ` as a wav file.
31
+
32
+ ## step2b
33
+ ### Extract pitch
34
+ Extract pitch information from wav files. Extract the pitch information (=f0) using the method built into parselmouth or pyworld and save it in `/logs/your-experiment-name/2a_f0`. Then logarithmically convert the pitch information to an integer between 1 and 255 and save it in `/logs/your-experiment-name/2b-f0nsf`.
35
+
36
+ ### Extract feature_print
37
+ Convert the wav file to embedding in advance using HuBERT. Read the wav file saved in `/logs/your-experiment-name/1_16k_wavs`, convert the wav file to 256-dimensional features with HuBERT, and save in npy format in `/logs/your-experiment-name/3_feature256`.
38
+
39
+ ## step3
40
+ train the model.
41
+ ### Glossary for Beginners
42
+ In deep learning, the data set is divided and the learning proceeds little by little. In one model update (step), batch_size data are retrieved and predictions and error corrections are performed. Doing this once for a dataset counts as one epoch.
43
+
44
+ Therefore, the learning time is the learning time per step x (the number of data in the dataset / batch size) x the number of epochs. In general, the larger the batch size, the more stable the learning becomes (learning time per step ÷ batch size) becomes smaller, but it uses more GPU memory. GPU RAM can be checked with the nvidia-smi command. Learning can be done in a short time by increasing the batch size as much as possible according to the machine of the execution environment.
45
+
46
+ ### Specify pretrained model
47
+ RVC starts training the model from pretrained weights instead of from 0, so it can be trained with a small dataset.
48
+
49
+ By default
50
+
51
+ - If you consider pitch, it loads `rvc-location/pretrained/f0G40k.pth` and `rvc-location/pretrained/f0D40k.pth`.
52
+ - If you don't consider pitch, it loads `rvc-location/pretrained/G40k.pth` and `rvc-location/pretrained/D40k.pth`.
53
+
54
+ When learning, model parameters are saved in `logs/your-experiment-name/G_{}.pth` and `logs/your-experiment-name/D_{}.pth` for each save_every_epoch, but by specifying this path, you can start learning. You can restart or start training from model weights learned in a different experiment.
55
+
56
+ ### learning index
57
+ RVC saves the HuBERT feature values used during training, and during inference, searches for feature values that are similar to the feature values used during learning to perform inference. In order to perform this search at high speed, the index is learned in advance.
58
+ For index learning, we use the approximate neighborhood search library faiss. Read the feature value of `logs/your-experiment-name/3_feature256` and use it to learn the index, and save it as `logs/your-experiment-name/add_XXX.index`.
59
+
60
+ (From the 20230428update version, it is read from the index, and saving / specifying is no longer necessary.)
61
+
62
+ ### Button description
63
+ - Train model: After executing step2b, press this button to train the model.
64
+ - Train feature index: After training the model, perform index learning.
65
+ - One-click training: step2b, model training and feature index training all at once.
docs/fr/Changelog_FR.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### 2023-08-13
2
+ 1-Corrections régulières de bugs
3
+ - Modification du nombre total d'époques minimum à 1 et changement du nombre total d'époques minimum à 2
4
+ - Correction des erreurs d'entraînement sans utiliser de modèles pré-entraînés
5
+ - Après la séparation des voix d'accompagnement, libération de la mémoire graphique
6
+ - Changement du chemin absolu d'enregistrement de faiss en chemin relatif
7
+ - Prise en charge des chemins contenant des espaces (le chemin du jeu de données d'entraînement et le nom de l'expérience sont pris en charge, et aucune erreur ne sera signalée)
8
+ - La liste de fichiers annule l'encodage utf8 obligatoire
9
+ - Résolution du problème de consommation de CPU causé par la recherche faiss lors des changements de voix en temps réel
10
+
11
+ 2-Mises à jour clés
12
+ - Entraînement du modèle d'extraction de hauteur vocale open-source le plus puissant actuel, RMVPE, et utilisation pour l'entraînement, l'inférence hors ligne/en temps réel de RVC, supportant PyTorch/Onnx/DirectML
13
+ - Prise en charge des cartes graphiques AMD et Intel via Pytorch_DML
14
+
15
+ (1) Changement de voix en temps réel (2) Inférence (3) Séparation de l'accompagnement vocal (4) L'entraînement n'est pas actuellement pris en charge, passera à l'entraînement CPU; prend en charge l'inférence RMVPE de la GPU par Onnx_Dml
16
+
17
+ ### 2023-06-18
18
+ - Nouveaux modèles pré-entraînés v2 : 32k et 48k
19
+ - Correction des erreurs d'inférence du modèle non-f0
20
+ - Pour un jeu de données d'entraînement dépassant 1 heure, réalisation automatique de minibatch-kmeans pour réduire la forme des caractéristiques, afin que l'entraînement, l'ajout et la recherche d'index soient beaucoup plus rapides.
21
+ - Fourniture d'un espace huggingface vocal2guitar jouet
22
+ - Suppression automatique des audios de jeu de données d'entraînement court-circuitant les valeurs aberrantes
23
+ - Onglet d'exportation Onnx
24
+
25
+ Expériences échouées:
26
+ - ~~Récupération de caractéristiques : ajout de la récupération de caractéristiques temporelles : non efficace~~
27
+ - ~~Récupération de caractéristiques : ajout de la réduction de dimensionnalité PCAR : la recherche est encore plus lente~~
28
+ - ~~Augmentation aléatoire des données lors de l'entraînement : non efficace~~
29
+
30
+ Liste de tâches:
31
+ - ~~Vocos-RVC (vocodeur minuscule) : non efficace~~
32
+ - ~~Support de Crepe pour l'entraînement : remplacé par RMVPE~~
33
+ - ~~Inférence de précision à moitié crepe : remplacée par RMVPE. Et difficile à réaliser.~~
34
+ - Support de l'éditeur F0
35
+
36
+ ### 2023-05-28
37
+ - Ajout d'un cahier v2, changelog coréen, correction de certaines exigences environnementales
38
+ - Ajout d'un mode de protection des consonnes muettes et de la respiration
39
+ - Support de la détection de hauteur crepe-full
40
+ - Séparation vocale UVR5 : support des modèles de déréverbération et de désécho
41
+ - Ajout du nom de l'expérience et de la version sur le nom de l'index
42
+ - Support pour les utilisateurs de sélectionner manuellement le format d'exportation des audios de sortie lors du traitement de conversion vocale en lots et de la séparation vocale UVR5
43
+ - L'entraînement du modèle v1 32k n'est plus pris en charge
44
+
45
+ ### 2023-05-13
46
+ - Nettoyage des codes redondants de l'ancienne version du runtime dans le package en un clic : lib.infer_pack et uvr5_pack
47
+ - Correction du bug de multiprocessus pseudo dans la préparation du jeu de données d'entraînement
48
+ - Ajout de l'ajustement du rayon de filtrage médian pour l'algorithme de reconnaissance de hauteur de récolte
49
+ - Prise en charge du rééchantillonnage post-traitement pour l'exportation audio
50
+ - Réglage de multi-traitement "n_cpu" pour l'entraînement est passé de "extraction f0" à "prétraitement des données et extraction f0"
51
+ - Détection automatique des chemins d'index sous le dossier de logs et fourniture d'une fonction de liste déroulante
52
+ - Ajout de "Questions fréquemment posées et réponses" sur la page d'onglet (vous pouvez également consulter le wiki github RVC)
53
+ - Lors de l'inférence, la hauteur de la récolte est mise en cache lors de l'utilisation du même chemin d'accès audio d'entrée (objectif : en utilisant l'extraction de
54
+
55
+ la hauteur de la récolte, l'ensemble du pipeline passera par un long processus d'extraction de la hauteur répétitif. Si la mise en cache n'est pas utilisée, les utilisateurs qui expérimentent différents timbres, index, et réglages de rayon de filtrage médian de hauteur connaîtront un processus d'attente très douloureux après la première inférence)
56
+
57
+ ### 2023-05-14
58
+ - Utilisation de l'enveloppe de volume de l'entrée pour mixer ou remplacer l'enveloppe de volume de la sortie (peut atténuer le problème du "muet en entrée et bruit de faible amplitude en sortie". Si le bruit de fond de l'audio d'entrée est élevé, il n'est pas recommandé de l'activer, et il n'est pas activé par défaut (1 peut être considéré comme n'étant pas activé)
59
+ - Prise en charge de la sauvegarde des modèles extraits à une fréquence spécifiée (si vous voulez voir les performances sous différentes époques, mais que vous ne voulez pas sauvegarder tous les grands points de contrôle et extraire manuellement les petits modèles par ckpt-processing à chaque fois, cette fonctionnalité sera très pratique)
60
+ - Résolution du problème des "erreurs de connexion" causées par le proxy global du serveur en définissant des variables d'environnement
61
+ - Prise en charge des modèles pré-entraînés v2 (actuellement, seule la version 40k est disponible au public pour les tests, et les deux autres taux d'échantillonnage n'ont pas encore été entièrement entraînés)
62
+ - Limite le volume excessif dépassant 1 avant l'inférence
63
+ - Réglages légèrement ajustés de la préparation du jeu de données d'entraînement
64
+
65
+ #######################
66
+
67
+ Historique des changelogs:
68
+
69
+ ### 2023-04-09
70
+ - Correction des paramètres d'entraînement pour améliorer le taux d'utilisation du GPU : A100 est passé de 25% à environ 90%, V100 : de 50% à environ 90%, 2060S : de 60% à environ 85%, P40 : de 25% à environ 95% ; amélioration significative de la vitesse d'entraînement
71
+ - Changement de paramètre : la taille de batch_size totale est maintenant la taille de batch_size par GPU
72
+ - Changement de total_epoch : la limite maximale est passée de 100 à 1000 ; la valeur par défaut est passée de 10 à 20
73
+ - Correction du problème d'extraction de ckpt reconnaissant la hauteur de manière incorrecte, causant une inférence anormale
74
+ - Correction du problème d'entraînement distribué sauvegardant ckpt pour chaque rang
75
+ - Application du filtrage des caractéristiques nan pour l'extraction des caractéristiques
76
+ - Correction du problème d'entrée/sortie silencieuse produisant des consonnes aléatoires ou du bruit (les anciens modèles doivent être réentraînés avec un nouveau jeu de données)
77
+
78
+ ### 2023-04-16 Mise à jour
79
+ - Ajout d'une mini-interface graphique pour le changement de voix en temps réel, démarrage par double-clic sur go-realtime-gui.bat
80
+ - Application d'un filtrage pour les bandes de fréquences inférieures à 50Hz pendant l'entraînement et l'inférence
81
+ - Abaissement de l'extraction de hauteur minimale de pyworld du défaut 80 à 50 pour l'entraînement et l'inférence, permettant aux voix masculines graves entre 50-80Hz de ne pas être mises en sourdine
82
+ - WebUI prend en charge le changement de langue en fonction des paramètres régionaux du système (prise en charge actuelle de en_US, ja_JP, zh_CN, zh_HK, zh_SG, zh_TW ; défaut à en_US si non pris en charge)
83
+ - Correction de la reconnaissance de certains GPU (par exemple, échec de reconnaissance V100-16G, échec de reconnaissance P4)
84
+
85
+ ### 2023-04-28 Mise à jour
86
+ - Mise à niveau des paramètres d'index de faiss pour une vitesse plus rapide et une meilleure qualité
87
+ - Suppression de la dépendance à total_npy ; le partage futur de modèles ne nécessitera pas d'entrée total
88
+
89
+ _npy
90
+ - Levée des restrictions pour les GPU de la série 16, fournissant des paramètres d'inférence de 4 Go pour les GPU VRAM de 4 Go
91
+ - Correction d'un bug dans la séparation vocale d'accompagnement UVR5 pour certains formats audio
92
+ - La mini-interface de changement de voix en temps réel prend maintenant en charge les modèles de hauteur non-40k et non-lazy
93
+
94
+ ### Plans futurs :
95
+ Fonctionnalités :
96
+ - Ajouter une option : extraire de petits modèles pour chaque sauvegarde d'époque
97
+ - Ajouter une option : exporter un mp3 supplémentaire vers le chemin spécifié pendant l'inférence
98
+ - Prise en charge de l'onglet d'entraînement multi-personnes (jusqu'à 4 personnes)
99
+
100
+ Modèle de base :
101
+ - Collecter des fichiers wav de respiration pour les ajouter au jeu de données d'entraînement pour résoudre le problème des sons de respiration déformés
102
+ - Nous entraînons actuellement un modèle de base avec un jeu de données de chant étendu, qui sera publié à l'avenir
docs/fr/README.fr.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ <h1>Retrieval-based-Voice-Conversion-WebUI</h1>
4
+ Un framework simple et facile à utiliser pour la conversion vocale (modificateur de voix) basé sur VITS<br><br>
5
+
6
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange
7
+ )](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
8
+
9
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
10
+
11
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
12
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
13
+ [![Licence](https://img.shields.io/badge/LICENSE-MIT-green.svg?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
14
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
15
+
16
+ [![Discord](https://img.shields.io/badge/RVC%20Developers-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
17
+
18
+ [**Journal de mise à jour**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/Changelog_CN.md) | [**FAQ**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94) | [**AutoDL·Formation d'un chanteur AI pour 5 centimes**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/Autodl%E8%AE%AD%E7%BB%83RVC%C2%B7AI%E6%AD%8C%E6%89%8B%E6%95%99%E7%A8%8B) | [**Enregistrement des expériences comparatives**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/%E5%AF%B9%E7%85%A7%E5%AE%9E%E9%AA%8C%C2%B7%E5%AE%9E%E9%AA%8C%E8%AE%B0%E5%BD%95) | [**Démonstration en ligne**](https://huggingface.co/spaces/Ricecake123/RVC-demo)
19
+
20
+ </div>
21
+
22
+ ------
23
+
24
+ [**English**](../en/README.en.md) | [ **中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Français**](../fr/README.fr.md) | [**Turc**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
25
+
26
+ Cliquez ici pour voir notre [vidéo de démonstration](https://www.bilibili.com/video/BV1pm4y1z7Gm/) !
27
+
28
+ > Conversion vocale en temps réel avec RVC : [w-okada/voice-changer](https://github.com/w-okada/voice-changer)
29
+
30
+ > Le modèle de base est formé avec près de 50 heures de données VCTK de haute qualité et open source. Aucun souci concernant les droits d'auteur, n'hésitez pas à l'utiliser.
31
+
32
+ > Attendez-vous au modèle de base RVCv3 : plus de paramètres, plus de données, de meilleurs résultats, une vitesse d'inférence presque identique, et nécessite moins de données pour la formation.
33
+
34
+ ## Introduction
35
+ Ce dépôt a les caractéristiques suivantes :
36
+ + Utilise le top1 pour remplacer les caractéristiques de la source d'entrée par les caractéristiques de l'ensemble d'entraînement pour éliminer les fuites de timbre vocal.
37
+ + Peut être formé rapidement même sur une carte graphique relativement moins performante.
38
+ + Obtient de bons résultats même avec peu de données pour la formation (il est recommandé de collecter au moins 10 minutes de données vocales avec un faible bruit de fond).
39
+ + Peut changer le timbre vocal en fusionnant des modèles (avec l'aide de l'onglet ckpt-merge).
40
+ + Interface web simple et facile à utiliser.
41
+ + Peut appeler le modèle UVR5 pour séparer rapidement la voix et l'accompagnement.
42
+ + Utilise l'algorithme de pitch vocal le plus avancé [InterSpeech2023-RMVPE](#projets-référencés) pour éliminer les problèmes de voix muette. Meilleurs résultats, plus rapide que crepe_full, et moins gourmand en ressources.
43
+ + Support d'accélération pour les cartes AMD et Intel.
44
+
45
+ ## Configuration de l'environnement
46
+ Exécutez les commandes suivantes dans un environnement Python de version 3.8 ou supérieure.
47
+
48
+ (Windows/Linux)
49
+ Installez d'abord les dépendances principales via pip :
50
+ ```bash
51
+ # Installez Pytorch et ses dépendances essentielles, sautez si déjà installé.
52
+ # Voir : https://pytorch.org/get-started/locally/
53
+ pip install torch torchvision torchaudio
54
+
55
+ # Pour les utilisateurs de Windows avec une architecture Nvidia Ampere (RTX30xx), en se basant sur l'expérience #21, spécifiez la version CUDA correspondante pour Pytorch.
56
+ pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
57
+
58
+ # Pour Linux + carte AMD, utilisez cette version de Pytorch:
59
+ pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.4.2
60
+ ```
61
+
62
+ Vous pouvez utiliser poetry pour installer les dépendances :
63
+ ```bash
64
+ # Installez l'outil de gestion des dépendances Poetry, sautez si déjà installé.
65
+ # Voir : https://python-poetry.org/docs/#installation
66
+ curl -sSL https://install.python-poetry.org | python3 -
67
+
68
+ # Installez les dépendances avec poetry.
69
+ poetry install
70
+ ```
71
+
72
+ Ou vous pouvez utiliser pip pour installer les dépendances :
73
+ ```bash
74
+ # Cartes Nvidia :
75
+ pip install -r requirements.txt
76
+
77
+ # Cartes AMD/Intel :
78
+ pip install -r requirements-dml.txt
79
+
80
+ # Cartes Intel avec IPEX
81
+ pip install -r requirements-ipex.txt
82
+
83
+ # Cartes AMD sur Linux (ROCm)
84
+ pip install -r requirements-amd.txt
85
+ ```
86
+
87
+ ------
88
+ Les utilisateurs de Mac peuvent exécuter `run.sh` pour installer les dépendances :
89
+ ```bash
90
+ sh ./run.sh
91
+ ```
92
+
93
+ ## Préparation d'autres modèles pré-entraînés
94
+ RVC nécessite d'autres modèles pré-entraînés pour l'inférence et la formation.
95
+
96
+ ```bash
97
+ #Télécharger tous les modèles depuis https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/
98
+ python tools/download_models.py
99
+ ```
100
+
101
+ Ou vous pouvez télécharger ces modèles depuis notre [espace Hugging Face](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/).
102
+
103
+ Voici une liste des modèles et autres fichiers requis par RVC :
104
+ ```bash
105
+ ./assets/hubert/hubert_base.pt
106
+
107
+ ./assets/pretrained
108
+
109
+ ./assets/uvr5_weights
110
+
111
+ # Pour tester la version v2 du modèle, téléchargez également :
112
+
113
+ ./assets/pretrained_v2
114
+
115
+ # Si vous utilisez Windows, vous pourriez avoir besoin de ces fichiers pour ffmpeg et ffprobe, sautez cette étape si vous avez déjà installé ffmpeg et ffprobe. Les utilisateurs d'ubuntu/debian peuvent installer ces deux bibliothèques avec apt install ffmpeg. Les utilisateurs de Mac peuvent les installer avec brew install ffmpeg (prérequis : avoir installé brew).
116
+
117
+ # ./ffmpeg
118
+
119
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe
120
+
121
+ # ./ffprobe
122
+
123
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe
124
+
125
+ # Si vous souhaitez utiliser le dernier algorithme RMVPE de pitch vocal, téléchargez les paramètres du modèle de pitch et placez-les dans le répertoire racine de RVC.
126
+
127
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt
128
+
129
+ # Les utilisateurs de cartes AMD/Intel nécessitant l'environnement DML doivent télécharger :
130
+
131
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx
132
+
133
+ ```
134
+ Pour les utilisateurs d'Intel ARC avec IPEX, exécutez d'abord `source /opt/intel/oneapi/setvars.sh`.
135
+ Ensuite, exécutez la commande suivante pour démarrer WebUI :
136
+ ```bash
137
+ python infer-web.py
138
+ ```
139
+
140
+ Si vous utilisez Windows ou macOS, vous pouvez télécharger et extraire `RVC-beta.7z`. Les utilisateurs de Windows peuvent exécuter `go-web.bat` pour démarrer WebUI, tandis que les utilisateurs de macOS peuvent exécuter `sh ./run.sh`.
141
+
142
+ ## Compatibilité ROCm pour les cartes AMD (seulement Linux)
143
+ Installez tous les pilotes décrits [ici](https://rocm.docs.amd.com/en/latest/deploy/linux/os-native/install.html).
144
+
145
+ Sur Arch utilisez pacman pour installer le pilote:
146
+ ````
147
+ pacman -S rocm-hip-sdk rocm-opencl-sdk
148
+ ````
149
+
150
+ Vous devrez peut-être créer ces variables d'environnement (par exemple avec RX6700XT):
151
+ ````
152
+ export ROCM_PATH=/opt/rocm
153
+ export HSA_OVERRIDE_GFX_VERSION=10.3.0
154
+ ````
155
+ Assurez-vous que votre utilisateur est dans les groupes `render` et `video`:
156
+ ````
157
+ sudo usermod -aG render $USERNAME
158
+ sudo usermod -aG video $USERNAME
159
+ ````
160
+ Enfin vous pouvez exécuter WebUI:
161
+ ```bash
162
+ python infer-web.py
163
+ ```
164
+
165
+ ## Crédits
166
+ + [ContentVec](https://github.com/auspicious3000/contentvec/)
167
+ + [VITS](https://github.com/jaywalnut310/vits)
168
+ + [HIFIGAN](https://github.com/jik876/hifi-gan)
169
+ + [Gradio](https://github.com/gradio-app/gradio)
170
+ + [FFmpeg](https://github.com/FFmpeg/FFmpeg)
171
+ + [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
172
+ + [audio-slicer](https://github.com/openvpi/audio-slicer)
173
+ + [Extraction de la hauteur vocale : RMVPE](https://github.com/Dream-High/RMVPE)
174
+ + Le modèle pré-entraîné a été formé et testé par [yxlllc](https://github.com/yxlllc/RMVPE) et [RVC-Boss](https://github.com/RVC-Boss).
175
+
176
+ ## Remerciements à tous les contributeurs pour leurs efforts
177
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
178
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
179
+ </a>
docs/fr/faiss_tips_fr.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Conseils de réglage pour faiss
2
+ ==================
3
+ # À propos de faiss
4
+ faiss est une bibliothèque de recherches de voisins pour les vecteurs denses, développée par Facebook Research, qui implémente efficacement de nombreuses méthodes de recherche de voisins approximatifs.
5
+ La recherche de voisins approximatifs trouve rapidement des vecteurs similaires tout en sacrifiant une certaine précision.
6
+
7
+ ## faiss dans RVC
8
+ Dans RVC, pour l'incorporation des caractéristiques converties par HuBERT, nous recherchons des incorporations similaires à l'incorporation générée à partir des données d'entraînement et les mixons pour obtenir une conversion plus proche de la parole originale. Cependant, cette recherche serait longue si elle était effectuée de manière naïve, donc une conversion à haute vitesse est réalisée en utilisant une recherche de voisinage approximatif.
9
+
10
+ # Vue d'ensemble de la mise en œuvre
11
+ Dans '/logs/votre-expérience/3_feature256' où le modèle est situé, les caractéristiques extraites par HuBERT de chaque donnée vocale sont situées.
12
+ À partir de là, nous lisons les fichiers npy dans un ordre trié par nom de fichier et concaténons les vecteurs pour créer big_npy. (Ce vecteur a la forme [N, 256].)
13
+ Après avoir sauvegardé big_npy comme /logs/votre-expérience/total_fea.npy, nous l'entraînons avec faiss.
14
+
15
+ Dans cet article, j'expliquerai la signification de ces paramètres.
16
+
17
+ # Explication de la méthode
18
+ ## Usine d'index
19
+ Une usine d'index est une notation unique de faiss qui exprime un pipeline qui relie plusieurs méthodes de recherche de voisinage approximatif sous forme de chaîne.
20
+ Cela vous permet d'essayer diverses méthodes de recherche de voisinage approximatif simplement en changeant la chaîne de l'usine d'index.
21
+ Dans RVC, elle est utilisée comme ceci :
22
+
23
+ ```python
24
+ index = faiss.index_factory(256, "IVF%s,Flat" % n_ivf)
25
+ ```
26
+
27
+ Parmi les arguments de index_factory, le premier est le nombre de dimensions du vecteur, le second est la chaîne de l'usine d'index, et le troisième est la distance à utiliser.
28
+
29
+ Pour une notation plus détaillée :
30
+ https://github.com/facebookresearch/faiss/wiki/The-index-factory
31
+
32
+ ## Index pour la distance
33
+ Il existe deux index typiques utilisés comme similarité de l'incorporation comme suit :
34
+
35
+ - Distance euclidienne (METRIC_L2)
36
+ - Produit intérieur (METRIC_INNER_PRODUCT)
37
+
38
+ La distance euclidienne prend la différence au carré dans chaque dimension, somme les différences dans toutes les dimensions, puis prend la racine carrée. C'est la même chose que la distance en 2D et 3D que nous utilisons au quotidien.
39
+ Le produit intérieur n'est pas utilisé comme index de similarité tel quel, et la similarité cosinus qui prend le produit intérieur après avoir été normalisé par la norme L2 est généralement utilisée.
40
+
41
+ Lequel est le mieux dépend du cas, mais la similarité cosinus est souvent utilisée dans l'incorporation obtenue par word2vec et des modèles de récupération d'images similaires appris par ArcFace. Si vous voulez faire une normalisation l2 sur le vecteur X avec numpy, vous pouvez le faire avec le code suivant avec eps suffisamment petit pour éviter une division par 0.
42
+
43
+ ```python
44
+ X_normed = X / np.maximum(eps, np.linalg.norm(X, ord=2, axis=-1, keepdims=True))
45
+ ```
46
+
47
+ De plus, pour l'usine d'index, vous pouvez changer l'index de distance utilisé pour le calcul en choisissant la valeur à passer comme troisième argument.
48
+
49
+ ```python
50
+ index = faiss.index_factory(dimention, texte, faiss.METRIC_INNER_PRODUCT)
51
+ ```
52
+
53
+ ## IVF
54
+ IVF (Inverted file indexes) est un algorithme similaire à l'index inversé dans la recherche en texte intégral.
55
+ Lors de l'apprentissage, la cible de recherche est regroupée avec kmeans, et une partition de Voronoi est effectuée en utilisant le centre du cluster. Chaque point de données est attribué à un cluster, nous créons donc un dictionnaire qui permet de rechercher les points de données à partir des clusters.
56
+
57
+ Par exemple, si des clusters sont attribués comme suit :
58
+ |index|Cluster|
59
+ |-----|-------|
60
+ |1|A|
61
+ |2|B|
62
+ |3|A|
63
+ |4|C|
64
+ |5|B|
65
+
66
+ L'index inversé résultant ressemble à ceci :
67
+
68
+ |cluster|index|
69
+ |-------|-----|
70
+ |A|1, 3|
71
+ |B|2, 5|
72
+ |C|4|
73
+
74
+ Lors de la recherche, nous recherchons d'abord n_probe clusters parmi les clusters, puis nous calculons les distances pour les points de données appartenant à chaque cluster.
75
+
76
+ # Recommandation de paramètre
77
+ Il existe des directives officielles sur la façon de choisir un index, je vais donc expliquer en conséquence.
78
+ https://github.com/facebookresearch/faiss/wiki/Guidelines-to-choose-an-index
79
+
80
+ Pour les ensembles de données inférieurs à 1M, 4bit-PQ est la méthode la plus efficace disponible dans faiss en avril 2023.
81
+ En combinant cela avec IVF, en réduisant les candidats avec 4bit-PQ, et enfin en recalculant la distance avec un index précis, on peut le décrire en utilisant l'usine d'index suivante.
82
+
83
+ ```python
84
+ index = faiss.index_factory(256, "IVF1024,PQ128x4fs,RFlat")
85
+ ```
86
+
87
+ ## Paramètres recommandés pour IVF
88
+ Considérez le cas de trop d'IVF. Par exemple, si une quantification grossière par IVF est effectuée pour le nombre de données, cela revient à une recherche exhaustive naïve et est inefficace.
89
+ Pour 1M ou moins, les valeurs IVF sont recommandées entre 4*sqrt(N) ~ 16*sqrt(N) pour N nombre de points de données.
90
+
91
+ Comme le temps de calcul augmente proportionnellement au nombre de n_probes, veuillez consulter la précision et choisir de manière appropriée. Personnellement, je ne pense pas que RVC ait besoin de tant de précision, donc n_probe = 1 est bien.
92
+
93
+ ## FastScan
94
+ FastScan est une méthode qui permet d'approximer rapidement les distances par quantification de produit cartésien en les effectuant dans les registres.
95
+ La quantification du produit cartésien effectue un regroupement indépendamment
96
+
97
+ pour chaque dimension d (généralement d = 2) pendant l'apprentissage, calcule la distance entre les clusters à l'avance, et crée une table de recherche. Au moment de la prédiction, la distance de chaque dimension peut être calculée en O(1) en consultant la table de recherche.
98
+ Le nombre que vous spécifiez après PQ spécifie généralement la moitié de la dimension du vecteur.
99
+
100
+ Pour une description plus détaillée de FastScan, veuillez consulter la documentation officielle.
101
+ https://github.com/facebookresearch/faiss/wiki/Fast-accumulation-of-PQ-and-AQ-codes-(FastScan)
102
+
103
+ ## RFlat
104
+ RFlat est une instruction pour recalculer la distance approximative calculée par FastScan avec la distance exacte spécifiée par le troisième argument de l'usine d'index.
105
+ Lors de l'obtention de k voisins, k*k_factor points sont recalculés.
docs/fr/faq_fr.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Q1: Erreur ffmpeg/erreur utf8.
2
+ Il s'agit très probablement non pas d'un problème lié à FFmpeg, mais d'un problème lié au chemin de l'audio ;
3
+
4
+ FFmpeg peut rencontrer une erreur lors de la lecture de chemins contenant des caractères spéciaux tels que des espaces et (), ce qui peut provoquer une erreur FFmpeg ; et lorsque l'audio du jeu d'entraînement contient des chemins en chinois, l'écrire dans filelist.txt peut provoquer une erreur utf8.<br>
5
+
6
+ ## Q2: Impossible de trouver le fichier index après "Entraînement en un clic".
7
+ Si l'affichage indique "L'entraînement est terminé. Le programme est fermé", alors le modèle a été formé avec succès, et les erreurs subséquentes sont fausses ;
8
+
9
+ L'absence d'un fichier index 'ajouté' après un entraînement en un clic peut être due au fait que le jeu d'entraînement est trop grand, ce qui bloque l'ajout de l'index ; cela a été résolu en utilisant un traitement par lots pour ajouter l'index, ce qui résout le problème de surcharge de mémoire lors de l'ajout de l'index. Comme solution temporaire, essayez de cliquer à nouveau sur le bouton "Entraîner l'index".<br>
10
+
11
+ ## Q3: Impossible de trouver le modèle dans “Inférence du timbre” après l'entraînement
12
+ Cliquez sur “Actualiser la liste des timbres” et vérifiez à nouveau ; si vous ne le voyez toujours pas, vérifiez s'il y a des erreurs pendant l'entraînement et envoyez des captures d'écran de la console, de l'interface utilisateur web, et des logs/nom_de_l'expérience/*.log aux développeurs pour une analyse plus approfondie.<br>
13
+
14
+ ## Q4: Comment partager un modèle/Comment utiliser les modèles d'autres personnes ?
15
+ Les fichiers pth stockés dans rvc_root/logs/nom_de_l'expérience ne sont pas destinés à être partagés ou inférés, mais à stocker les points de contrôle de l'expérience pour la reproductibilité et l'entraînement ultérieur. Le modèle à partager doit être le fichier pth de 60+MB dans le dossier des poids ;
16
+
17
+ À l'avenir, les poids/nom_de_l'expérience.pth et les logs/nom_de_l'expérience/ajouté_xxx.index seront fusionnés en un seul fichier poids/nom_de_l'expérience.zip pour éliminer le besoin d'une entrée d'index manuelle ; partagez donc le fichier zip, et non le fichier pth, sauf si vous souhaitez continuer l'entraînement sur une machine différente ;
18
+
19
+ Copier/partager les fichiers pth de plusieurs centaines de Mo du dossier des logs au dossier des poids pour une inférence forcée peut entraîner des erreurs telles que des f0, tgt_sr, ou d'autres clés manquantes. Vous devez utiliser l'onglet ckpt en bas pour sélectionner manuellement ou automatiquement (si l'information se trouve dans les logs/nom_de_l'expérience), si vous souhaitez inclure les informations sur la hauteur et les options de taux d'échantillonnage audio cible, puis extraire le modèle plus petit. Après extraction, il y aura un fichier pth de 60+ MB dans le dossier des poids, et vous pouvez actualiser les voix pour l'utiliser.<br>
20
+
21
+ ## Q5: Erreur de connexion.
22
+ Il se peut que vous ayez fermé la console (fenêtre de ligne de commande noire).<br>
23
+
24
+ ## Q6: WebUI affiche 'Expecting value: line 1 column 1 (char 0)'.
25
+ Veuillez désactiver le proxy système LAN/proxy global puis rafraîchir.<br>
26
+
27
+ ## Q7: Comment s'entraîner et déduire sans le WebUI ?
28
+ Script d'entraînement :<br>
29
+ Vous pouvez d'abord lancer l'entraînement dans WebUI, et les versions en ligne de commande de la préparation du jeu de données et de l'entraînement seront affichées dans la fenêtre de message.<br>
30
+
31
+ Script d'inférence :<br>
32
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py<br>
33
+
34
+ Par exemple :<br>
35
+
36
+ runtime\python.exe myinfer.py 0 "E:\codes\py39\RVC-beta\todo-songs\1111.wav" "E:\codes\py39\logs\mi-test\added_IVF677_Flat_nprobe_7.index" récolte "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True<br>
37
+
38
+ f0up_key=sys.argv[1]<br>
39
+ input_path=sys.argv[2]<br>
40
+ index_path=sys.argv[3]<br>
41
+ f0method=sys.argv[4]#récolte ou pm<br>
42
+ opt_path=sys.argv[5]<br>
43
+ model_path=sys.argv[6]<br>
44
+ index_rate=float(sys.argv[7])<br>
45
+ device=sys.argv[8]<br>
46
+ is_half=bool(sys.argv[9])<br>
47
+
48
+ ### Explication des arguments :
49
+
50
+ 1. **Numéro de voix cible** : `0` (dans cet exemple)
51
+ 2. **Chemin du fichier audio d'entrée** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\INPUTS_VOCAL\vocal.wav"`
52
+ 3. **Chemin du fichier index** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\logs\Hagrid.index"`
53
+ 4. **Méthode pour l'extraction du pitch (F0)** : `harvest` (dans cet exemple)
54
+ 5. **Chemin de sortie pour le fichier audio traité** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\INPUTS_VOCAL\test.wav"`
55
+ 6. **Chemin du modèle** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\weights\HagridFR.pth"`
56
+ 7. **Taux d'index** : `0.6` (dans cet exemple)
57
+ 8. **Périphérique pour l'exécution (GPU/CPU)** : `cuda:0` pour une carte NVIDIA, par exemple.
58
+ 9. **Protection des droits d'auteur (True/False)**.
59
+
60
+ <!-- Pour myinfer nouveau models :
61
+
62
+ runtime\python.exe myinfer.py 0 "C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\INPUTS_VOCAL\vocal.wav" "C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\logs\Hagrid.index" harvest "C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\INPUTS_VOCAL\test.wav" "C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\weights\HagridFR.pth" 0.6 cuda:0 True 5 44100 44100 1.0 1.0 True
63
+
64
+
65
+ f0up_key=sys.argv[1]
66
+ input_path = sys.argv[2]
67
+ index_path = sys.argv[3]
68
+ f0method = sys.argv[4]
69
+ opt_path = sys.argv[5]
70
+ model_path = sys.argv[6]
71
+ index_rate = float(sys.argv[7])
72
+ device = sys.argv[8]
73
+ is_half = bool(sys.argv[9])
74
+ filter_radius = int(sys.argv[10])
75
+ tgt_sr = int(sys.argv[11])
76
+ resample_sr = int(sys.argv[12])
77
+ rms_mix_rate = float(sys.argv[13])
78
+ version = sys.argv[14]
79
+ protect = sys.argv[15].lower() == 'false' # change for true if needed
80
+
81
+ ### Explication des arguments :
82
+
83
+ 1. **Numéro de voix cible** : `0` (dans cet exemple)
84
+ 2. **Chemin du fichier audio d'entrée** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\INPUTS_VOCAL\vocal.wav"`
85
+ 3. **Chemin du fichier index** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\logs\Hagrid.index"`
86
+ 4. **Méthode pour l'extraction du pitch (F0)** : `harvest` (dans cet exemple)
87
+ 5. **Chemin de sortie pour le fichier audio traité** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\INPUTS_VOCAL\test.wav"`
88
+ 6. **Chemin du modèle** : `"C:\ YOUR PATH FOR THE ROOT (RVC0813Nvidia)\weights\HagridFR.pth"`
89
+ 7. **Taux d'index** : `0.6` (dans cet exemple)
90
+ 8. **Périphérique pour l'exécution (GPU/CPU)** : `cuda:0` pour une carte NVIDIA, par exemple.
91
+ 9. **Protection des droits d'auteur (True/False)**.
92
+ 10. **Rayon du filtre** : `5` (dans cet exemple)
93
+ 11. **Taux d'échantillonnage cible** : `44100` (dans cet exemple)
94
+ 12. **Taux d'échantillonnage pour le rééchantillonnage** : `44100` (dans cet exemple)
95
+ 13. **Taux de mixage RMS** : `1.0` (dans cet exemple)
96
+ 14. **Version** : `1.0` (dans cet exemple)
97
+ 15. **Protection** : `True` (dans cet exemple)
98
+
99
+ Assurez-vous de remplacer les chemins par ceux correspondant à votre configuration et d'ajuster les autres paramètres selon vos besoins.
100
+ -->
101
+
102
+ ## Q8: Erreur Cuda/Mémoire Cuda épuisée.
103
+ Il y a une faible chance qu'il y ait un problème avec la configuration CUDA ou que le dispositif ne soit pas pris en charge ; plus probablement, il n'y a pas assez de mémoire (manque de mémoire).<br>
104
+
105
+ Pour l'entraînement, réduisez la taille du lot (si la réduction à 1 n'est toujours pas suffisante, vous devrez peut-être changer la carte graphique) ; pour l'inférence, ajustez les paramètres x_pad, x_query, x_center, et x_max dans le fichier config.py selon les besoins. Les cartes mémoire de 4 Go ou moins (par exemple 1060(3G) et diverses cartes de 2 Go) peuvent être abandonnées, tandis que les cartes mémoire de 4 Go ont encore une chance.<br>
106
+
107
+ ## Q9: Combien de total_epoch sont optimaux ?
108
+ Si la qualité audio du jeu d'entraînement est médiocre et que le niveau de bruit est élevé, 20-30 époques sont suffisantes. Le fixer trop haut n'améliorera pas la qualité audio de votre jeu d'entraînement de faible qualité.<br>
109
+
110
+ Si la qualité audio du jeu d'entraînement est élevée, le niveau de bruit est faible, et la durée est suffisante, vous pouvez l'augmenter. 200 est acceptable (puisque l'entraînement est rapide, et si vous êtes capable de préparer un jeu d'entraînement de haute qualité, votre GPU peut probablement gérer une durée d'entraînement plus longue sans problème).<br>
111
+
112
+ ## Q10: Quelle durée de jeu d'entraînement est nécessaire ?
113
+ Un jeu d'environ 10 min à 50 min est recommandé.<br>
114
+
115
+ Avec une garantie de haute qualité sonore et de faible bruit de fond, plus peut être ajouté si le timbre du jeu est uniforme.<br>
116
+
117
+ Pour un jeu d'entraînement de haut niveau (ton maigre + ton distinctif), 5 min à 10 min sont suffisantes.<br>
118
+
119
+ Il y a des personnes qui ont réussi à s'entraîner avec des données de 1 min à 2 min, mais le succès n'est pas reproductible par d'autres et n'est pas très informatif. <br>Cela nécessite que le jeu d'entraînement ait un timbre très distinctif (par exemple, un son de fille d'anime aérien à haute fréquence) et que la qualité de l'audio soit élevée ;
120
+ Aucune tentative réussie n'a été faite jusqu'à présent avec des données de moins de 1 min. Cela n'est pas recommandé.<br>
121
+
122
+ ## Q11: À quoi sert le taux d'index et comment l'ajuster ?
123
+ Si la qualité tonale du modèle pré-entraîné et de la source d'inférence est supérieure à celle du jeu d'entraînement, ils peuvent améliorer la qualité tonale du résultat d'inférence, mais au prix d'un possible biais tonal vers le ton du modèle sous-jacent/source d'inférence plutôt que le ton du jeu d'entraînement, ce qui est généralement appelé "fuite de ton".<br>
124
+
125
+ Le taux d'index est utilisé pour réduire/résoudre le problème de la fuite de timbre. Si le taux d'index est fixé à 1, théoriquement il n'y a pas de fuite de timbre de la source d'inférence et la qualité du timbre est plus biaisée vers le jeu d'entraînement. Si le jeu d'entraînement a une qualité sonore inférieure à celle de la source d'inférence, alors un taux d'index plus élevé peut réduire la qualité sonore. Le réduire à 0 n'a pas l'effet d'utiliser le mélange de récupération pour protéger les tons du jeu d'entraînement.<br>
126
+
127
+ Si le jeu d'entraînement a une bonne qualité audio et une longue durée, augmentez le total_epoch, lorsque le modèle lui-même est moins susceptible de se référer à la source déduite et au modèle sous-jacent pré-entraîné, et qu'il y a peu de "fuite de ton", le taux d'index n'est pas important et vous pouvez même ne pas créer/partager le fichier index.<br>
128
+
129
+ ## Q12: Comment choisir le gpu lors de l'inférence ?
130
+ Dans le fichier config.py, sélectionnez le numéro de carte après "device cuda:".<br>
131
+
132
+ La correspondance entre le numéro de carte et la carte graphique peut être vue dans la section d'information de la carte graphique de l'onglet d'entraînement.<br>
133
+
134
+ ## Q13: Comment utiliser le modèle sauvegardé au milieu de l'entraînement ?
135
+ Sauvegardez via l'extraction de modèle en bas de l'onglet de traitement ckpt.
136
+
137
+ ## Q14: Erreur de fichier/erreur de mémoire (lors de l'entraînement) ?
138
+ Il y a trop de processus et votre mémoire n'est pas suffisante. Vous pouvez le corriger en :
139
+
140
+ 1. Diminuer l'entrée dans le champ "Threads of CPU".
141
+
142
+ 2. Pré-découper le jeu d'entraînement en fichiers audio plus courts.
143
+
144
+ ## Q15: Comment poursuivre l'entraînement avec plus de données
145
+
146
+ étape 1 : mettre toutes les données wav dans path2.
147
+
148
+ étape 2 : exp_name2+path2 -> traiter le jeu de données et extraire la caractéristique.
149
+
150
+ étape 3 : copier les derniers fichiers G et D de exp_name1 (votre expérience précédente) dans le dossier exp_name2.
151
+
152
+ étape 4 : cliquez sur "entraîner le modèle", et il continuera l'entraînement depuis le début de votre époque de modèle exp précédente.
153
+
154
+ ## Q16: erreur à propos de llvmlite.dll
155
+
156
+ OSError: Impossible de charger le fichier objet partagé : llvmlite.dll
157
+
158
+ FileNotFoundError: Impossible de trouver le module lib\site-packages\llvmlite\binding\llvmlite.dll (ou l'une de ses dépendances). Essayez d'utiliser la syntaxe complète du constructeur.
159
+
160
+ Le problème se produira sous Windows, installez https://aka.ms/vs/17/release/vc_redist.x64.exe et il sera corrigé.
161
+
162
+ ## Q17: RuntimeError: La taille étendue du tensor (17280) doit correspondre à la taille existante (0) à la dimension non-singleton 1. Tailles cibles : [1, 17280]. Tailles des tensors : [0]
163
+
164
+ Supprimez les fichiers wav dont la taille est nettement inférieure à celle des autres, et cela ne se reproduira plus. Ensuite, cliquez sur "entraîner le modèle" et "entraîner l'index".
165
+
166
+ ## Q18: RuntimeError: La taille du tensor a (24) doit correspondre à la taille du tensor b (16) à la dimension non-singleton 2
167
+
168
+ Ne changez pas le taux d'échantillonnage puis continuez l'entraînement. S'il est nécessaire de changer, le nom de l'expérience doit être modifié et le modèle sera formé à partir de zéro. Vous pouvez également copier les hauteurs et caractéristiques (dossiers 0/1/2/2b) extraites la dernière fois pour accélérer le processus d'entraînement.
169
+
docs/fr/training_tips_fr.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Instructions et conseils pour la formation RVC
2
+ ======================================
3
+ Ces conseils expliquent comment se déroule la formation des données.
4
+
5
+ # Flux de formation
6
+ Je vais expliquer selon les étapes de l'onglet de formation de l'interface graphique.
7
+
8
+ ## étape 1
9
+ Définissez ici le nom de l'expérience.
10
+
11
+ Vous pouvez également définir ici si le modèle doit prendre en compte le pitch.
12
+ Si le modèle ne considère pas le pitch, le modèle sera plus léger, mais pas adapté au chant.
13
+
14
+ Les données de chaque expérience sont placées dans `/logs/nom-de-votre-experience/`.
15
+
16
+ ## étape 2a
17
+ Charge et pré-traite l'audio.
18
+
19
+ ### charger l'audio
20
+ Si vous spécifiez un dossier avec de l'audio, les fichiers audio de ce dossier seront lus automatiquement.
21
+ Par exemple, si vous spécifiez `C:Users\hoge\voices`, `C:Users\hoge\voices\voice.mp3` sera chargé, mais `C:Users\hoge\voices\dir\voice.mp3` ne sera pas chargé.
22
+
23
+ Comme ffmpeg est utilisé en interne pour lire l'audio, si l'extension est prise en charge par ffmpeg, elle sera lue automatiquement.
24
+ Après la conversion en int16 avec ffmpeg, convertir en float32 et normaliser entre -1 et 1.
25
+
26
+ ### débruitage
27
+ L'audio est lissé par filtfilt de scipy.
28
+
29
+ ### Séparation audio
30
+ Tout d'abord, l'audio d'entrée est divisé en détectant des parties de silence qui durent plus d'une certaine période (max_sil_kept = 5 secondes ?). Après avoir séparé l'audio sur le silence, séparez l'audio toutes les 4 secondes avec un chevauchement de 0,3 seconde. Pour l'audio séparé en 4 secondes, après normalisation du volume, convertir le fichier wav en `/logs/nom-de-votre-experience/0_gt_wavs` puis le convertir à un taux d'échantillonnage de 16k dans `/logs/nom-de-votre-experience/1_16k_wavs` sous forme de fichier wav.
31
+
32
+ ## étape 2b
33
+ ### Extraire le pitch
34
+ Extrait les informations de pitch des fichiers wav. Extraire les informations de pitch (=f0) en utilisant la méthode intégrée dans parselmouth ou pyworld et les sauvegarder dans `/logs/nom-de-votre-experience/2a_f0`. Convertissez ensuite logarithmiquement les informations de pitch en un entier entre 1 et 255 et sauvegardez-le dans `/logs/nom-de-votre-experience/2b-f0nsf`.
35
+
36
+ ### Extraire l'empreinte de caractéristique
37
+ Convertissez le fichier wav en incorporation à l'avance en utilisant HuBERT. Lisez le fichier wav sauvegardé dans `/logs/nom-de-votre-experience/1_16k_wavs`, convertissez le fichier wav en caractéristiques de dimension 256 avec HuBERT, et sauvegardez au format npy dans `/logs/nom-de-votre-experience/3_feature256`.
38
+
39
+ ## étape 3
40
+ former le modèle.
41
+ ### Glossaire pour les débutants
42
+ Dans l'apprentissage profond, l'ensemble de données est divisé et l'apprentissage progresse petit à petit. Dans une mise à jour de modèle (étape), les données de batch_size sont récupérées et des prédictions et corrections d'erreur sont effectuées. Faire cela une fois pour un ensemble de données compte comme une époque.
43
+
44
+ Par conséquent, le temps d'apprentissage est le temps d'apprentissage par étape x (le nombre de données dans l'ensemble de données / taille du lot) x le nombre d'époques. En général, plus la taille du lot est grande, plus l'apprentissage devient stable (temps d'apprentissage par étape ÷ taille du lot) devient plus petit, mais il utilise plus de mémoire GPU. La RAM GPU peut être vérifiée avec la commande nvidia-smi. L'apprentissage peut être effectué en peu de temps en augmentant la taille du lot autant que possible selon la machine de l'environnement d'exécution.
45
+
46
+ ### Spécifier le modèle pré-entraîné
47
+ RVC commence à former le modèle à partir de poids pré-entraînés plutôt que de zéro, il peut donc être formé avec un petit ensemble de données.
48
+
49
+ Par défaut :
50
+
51
+ - Si vous considérez le pitch, il charge `rvc-location/pretrained/f0G40k.pth` et `rvc-location/pretrained/f0D40k.pth`.
52
+ - Si vous ne considérez pas le pitch, il charge `rvc-location/pretrained/f0G40k.pth` et `rvc-location/pretrained/f0D40k.pth`.
53
+
54
+ Lors de l'apprentissage, les paramètres du modèle sont sauvegardés dans `logs/nom-de-votre-experience/G_{}.pth` et `logs/nom-de-votre-experience/D_{}.pth` pour chaque save_every_epoch, mais en spécifiant ce chemin, vous pouvez démarrer l'apprentissage. Vous pouvez redémarrer ou commencer à former à partir de poids de modèle appris lors d'une expérience différente.
55
+
56
+ ### Index d'apprentissage
57
+ RVC sauvegarde les valeurs de caractéristique HuBERT utilisées lors de la formation, et pendant l'inférence, recherche les valeurs de caractéristique qui sont similaires aux valeurs de caractéristique utilisées lors de l'apprentissage pour effectuer l'inférence. Afin d'effectuer cette recherche à haute vitesse, l'index est appris à l'avance.
58
+ Pour l'apprentissage d'index, nous utilisons la bibliothèque de recherche de voisinage approximatif faiss. Lisez la valeur de caractéristique de `logs/nom-de-votre-experience/3_feature256` et utilisez-la pour apprendre l'index, et sauvegardez-la sous `logs/nom-de-votre-experience/add_XXX.index`.
59
+
60
+ (À partir de la version de mise à jour 20230428, elle est lue à partir de l'index, et la sauvegarde / spécification n'est plus nécessaire.)
61
+
62
+ ### Description du bouton
63
+ - Former le modèle : après avoir exécuté l'étape 2b, appuyez sur ce bouton pour former le modèle.
64
+ - Former l'index de caractéristique : après avoir formé le modèle, effectuez un apprentissage d'index.
65
+ - Formation en un clic : étape 2b, formation du modèle et formation de l'index de caractéristique tout d'un coup.```
docs/jp/Changelog_JA.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### 2023 年 10 月 6 日更新
2
+
3
+ リアルタイム声変換のためのインターフェース go-realtime-gui.bat/gui_v1.py を作成しました(実際には既に存在していました)。今回のアップデートでは、リアルタイム声変換のパフォーマンスを重点的に最適化しました。0813 版との比較:
4
+
5
+ - 1. インターフェース操作の最適化:パラメータのホット更新(パラメータ調整時に中断して再起動する必要がない)、レイジーロードモデル(既にロードされたモデルは再ロードする必要がない)、音量因子パラメータ追加(音量を入力オーディオに近づける)
6
+ - 2. 内蔵ノイズリダクション効果と速度の最適化
7
+ - 3. 推論速度の大幅な最適化
8
+
9
+ 入出力デバイスは同じタイプを選択する必要があります。例えば、両方とも MME タイプを選択します。
10
+
11
+ 1006 バージョンの全体的な更新は:
12
+
13
+ - 1. rmvpe 音声ピッチ抽出アルゴリズムの効果をさらに向上、特に男性の低音部分で大きな改善
14
+ - 2. 推論インターフェースレイアウトの最適化
15
+
16
+ ### 2023 年 8 月 13 日更新
17
+
18
+ 1-通常のバグ修正
19
+
20
+ - 保存頻度と総ラウンド数の最小値を 1 に変更。総ラウンド数の最小値を 2 に変更
21
+ - pretrain モデルなしでのトレーニングエラーを修正
22
+ - 伴奏とボーカルの分離完了後の VRAM クリア
23
+ - faiss 保存パスを絶対パスから相対パスに変更
24
+ - パスに空白が含まれる場合のサポート(トレーニングセットのパス+実験名がサポートされ、エラーにならない)
25
+ - filelist の強制的な utf8 エンコーディングをキャンセル
26
+ - リアルタイム声変換中にインデックスを有効にすることによる CPU の大幅な使用問題を解決
27
+
28
+ 2-重要なアップデート
29
+
30
+ - 現在最も強力なオープンソースの人間の声のピッチ抽出モデル RMVPE をトレーニングし、RVC のトレーニング、オフライン/リアルタイム推論に使用。pytorch/onnx/DirectML をサポート
31
+ - pytorch-dml を通じて A カードと I カードのサポート
32
+ (1)リアルタイム声変換(2)推論(3)ボーカルと伴奏の分離(4)トレーニングはまだサポートされておらず、CPU でのトレーニングに切り替わります。onnx_dml を通じて rmvpe_gpu の推論をサポート
33
+
34
+ ### 2023 年 6 月 18 日更新
35
+
36
+ - v2 に 32k と 48k の 2 つの新しい事前トレーニングモデルを追加
37
+ - 非 f0 モデルの推論エラーを修正
38
+ - 1 時間を超えるトレーニングセットのインデックス構築フェーズでは、自動的に kmeans で特徴を縮小し、インデックスのトレーニングを加速し、検索に追加
39
+ - 人間の声をギターに変換するおもちゃのリポジトリを添付
40
+ - データ処理で異常値スライスを除外
41
+ - onnx エクスポートオプションタブ
42
+
43
+ 失敗した実験:
44
+
45
+ - ~~特徴検索に時間次元を追加:ダメ、効果がない~~
46
+ - ~~特徴検索に PCAR 次元削減オプションを追加:ダメ、大きなデータは kmeans でデータ量を減らし、小さいデータは次元削減の時間が節約するマッチングの時間よりも長い~~
47
+ - ~~onnx 推論のサポート(推論のみの小さな圧縮パッケージ付き):ダメ、nsf の生成には pytorch が必要~~
48
+ - ~~トレーニング中に音声、ジェンダー、eq、ノイズなどで入力をランダムに増強:ダメ、効果がない~~
49
+ - ~~小型声码器の接続調査:ダメ、効果が悪化~~
50
+
51
+ todolist:
52
+
53
+ - ~~トレーニングセットの音声ピッチ認識に crepe をサポート:既に RMVPE に置き換えられているため不要~~
54
+ - ~~多プロセス harvest 推論:既に RMVPE に置き換えられているため不要~~
55
+ - ~~crepe の精度サポートと RVC-config の同期:既に RMVPE に置き換えられているため不要。これをサポートするには torchcrepe ライブラリも同期する必要があり、面倒~~
56
+ - F0 エディタとの連携
57
+
58
+ ### 2023 年 5 月 28 日更新
59
+
60
+ - v2 の jupyter notebook を追加、韓国語の changelog を追加、いくつかの環境依存関係を追加
61
+ - 呼吸、清辅音、歯音の保護モードを追加
62
+ - crepe-full 推論をサポート
63
+ - UVR5 人間の声と伴奏の分離に 3 つの遅延除去モデルと MDX-Net の混响除去モデルを追加、HP3 人声抽出モデルを追加
64
+ - インデックス名にバージョンと実験名を追加
65
+ - 人間の声と伴奏の分離、推論のバッチエクスポートにオーディオエクスポートフォーマットオプションを追加
66
+ - 32k モデルのトレーニングを廃止
67
+
68
+ ### 2023 年 5 月 13 日更新
69
+
70
+ - ワンクリックパッケージ内の古いバージョンの runtime 内の lib.infer_pack と uvr5_pack の残骸をクリア
71
+ - トレーニングセットの事前処理の擬似マルチプロセスバグを修正
72
+ - harvest による音声ピッチ認識で無声音現象を弱めるために中間値フィルターを追加、中間値フィルターの半径を調整可能
73
+ - 音声エクスポートにポストプロセスリサンプリングを追加
74
+ - トレーニング時の n_cpu プロセス数を「F0 抽出のみ調整」から「データ事前処理と F0 抽出の調整」に変更
75
+ - logs フォルダ下の index パスを自動検出し、ドロップダウンリスト機能を提供
76
+ - タブページに「よくある質問」を追加(または github-rvc-wiki を参照)
77
+ - 同じパスの入力音声推論に音声ピッチキャッシュを追加(用途:harvest 音声ピッチ抽出を使用すると、全体のパイプラインが長く繰り返される音声ピッチ抽出プロセスを経験し、キャッシュを使用しない場合、異なる音色、インデックス、音声ピッチ中間値フィルター半径パラメーターをテストするユーザーは、最初のテスト後の待機結果が非常に苦痛になります)
78
+
79
+ ### 2023 年 5 月 14 日更新
80
+
81
+ - 音量エンベロープのアライメント入力ミックス(「入力が無音で出力がわずかなノイズ」の問題を緩和することができます。入力音声の背景ノイズが大きい場合は、オンにしないことをお勧めします。デフォルトではオフ(1 として扱われる))
82
+ - 指定された頻度で抽出された小型モデルを保存する機能をサポート(異なるエポックでの推論効果を試したいが、すべての大きなチェックポイントを保存して手動で小型モデルを抽出するのが面倒な場合、この機能は非常に便利です)
83
+ - システム全体のプロキシが開かれている場合にブラウザの接続エラーが発生する問題を環境変数の設定で解決
84
+ - v2 事前訓練モデルをサポート(現在、テストのために 40k バージョンのみが公開されており、他の 2 つのサンプリングレートはまだ完全に訓練されていません)
85
+ - 推論前に 1 を超える過大な音量を制限
86
+ - データ事前処理パラメーターを微調整
87
+
88
+ ### 2023 年 4 月 9 日更新
89
+
90
+ - トレーニングパラメーターを修正し、GPU の平均利用率を向上させる。A100 は最高 25%から約 90%に、V100 は 50%から約 90%に、2060S は 60%から約 85%に、P40 は 25%から約 95%に向上し、トレーニング速度が大幅に向上
91
+ - パラメーターを修正:全体の batch_size を各カードの batch_size に変更
92
+ - total_epoch を修正:最大制限 100 から 1000 に解除; デフォルト 10 からデフォルト 20 に引き上げ
93
+ - ckpt 抽出時に音声ピッチの有無を誤って認識し、推論が異常になる問題を修正
94
+ - 分散トレーニングで各ランクが ckpt を 1 回ずつ保存する問題を修正
95
+ - 特徴抽出で nan 特徴をフィルタリング
96
+ - 入力が無音で出力がランダムな子音またはノイズになる問題を修正(旧バージョンのモデルはトレーニングセットを作り直して再トレーニングする必要があります)
97
+
98
+ ### 2023 年 4 月 16 日更新
99
+
100
+ - ローカルリアルタイム音声変換ミニ GUI を新設、go-realtime-gui.bat をダブルクリックで起動
101
+ - トレーニングと推論で 50Hz 以下の周波数帯をフィルタリング
102
+ - トレーニングと推論の音声ピッチ抽出 pyworld の最低音声ピッチをデフォルトの 80 から 50 に下げ、50-80hz の男性低音声が無声にならないように
103
+ - WebUI がシステムの地域に基づいて言語を変更する機能をサポート(現在サポートされているのは en_US、ja_JP、zh_CN、zh_HK、zh_SG、zh_TW、サポートされていない場合はデフォルトで en_US になります)
104
+ - 一部のグラフィックカードの認識を修正(例えば V100-16G の認識失敗、P4 の認識失敗)
105
+
106
+ ### 2023 年 4 月 28 日更新
107
+
108
+ - faiss インデックス設定をアップグレードし、速度が速く、品質が高くなりました
109
+ - total_npy 依存をキャンセルし、今後のモデル共有では total_npy の記入は不要
110
+ - 16 シリーズの制限を解除。4G メモリ GPU に 4G の推論設定を提供
111
+ - 一部のオーディオ形式で UVR5 の人声伴奏分離のバグを修正
112
+ - リアルタイム音声変換ミニ gui に 40k 以外のモデルと妥協のない音声ピッチモデルのサポートを追加
113
+
114
+ ### 今後の計画:
115
+
116
+ 機能:
117
+
118
+ - 複数人のトレーニングタブのサポート(最大 4 人)
119
+
120
+ 底層モデル:
121
+
122
+ - 呼吸 wav をトレーニングセットに追加し、呼吸が音声変換の電子音の問題を修正
123
+ - 歌声トレーニングセットを追加した底層モデルをトレーニングしており、将来的には公開する予定です
docs/jp/README.ja.md ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ <h1>Retrieval-based-Voice-Conversion-WebUI</h1>
4
+ VITSに基づく使いやすい音声変換(voice changer)framework<br><br>
5
+
6
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
7
+
8
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
9
+
10
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
11
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
12
+ [![Licence](https://img.shields.io/badge/LICENSE-MIT-green.svg?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
13
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
14
+
15
+ [![Discord](https://img.shields.io/badge/RVC%20Developers-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
16
+
17
+ [**更新日誌**](./Changelog_JA.md) | [**よくある質問**](./faq_ja.md) | [**AutoDLで推論(中国語のみ)**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/Autodl%E8%AE%AD%E7%BB%83RVC%C2%B7AI%E6%AD%8C%E6%89%8B%E6%95%99%E7%A8%8B) | [**対照実験記録**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/%E5%AF%B9%E7%85%A7%E5%AE%9E%E9%AA%8C%C2%B7%E5%AE%9E%E9%AA%8C%E8%AE%B0%E5%BD%95) | [**オンラインデモ(中国語のみ)**](https://modelscope.cn/studios/FlowerCry/RVCv2demo)
18
+
19
+ [**English**](../en/README.en.md) | [**中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Français**](../fr/README.fr.md) | [**Türkçe**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
20
+
21
+ </div>
22
+
23
+ > 著作権侵害を心配することなく使用できるよう、約 50 時間の高品質なオープンソースデータセットを使用し、基底モデルを学習し出しました。
24
+
25
+ > RVCv3 の基底モデルをご期待ください。より大きなパラメータ、より大きなデータ、より良い効果を提供し、基本的に同様の推論速度を維持しながら学習に必要なデータ量はより少なくなります。
26
+
27
+ > モデルや統合パッケージをダウンロードしやすい[RVC-Models-Downloader](https://github.com/RVC-Project/RVC-Models-Downloader)のご利用がお勧めです。
28
+
29
+ <table>
30
+ <tr>
31
+ <td align="center">学習・推論</td>
32
+ <td align="center">即時音声変換</td>
33
+ </tr>
34
+ <tr>
35
+ <td align="center"><img src="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/129054828/092e5c12-0d49-4168-a590-0b0ef6a4f630"></td>
36
+ <td align="center"><img src="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/129054828/730b4114-8805-44a1-ab1a-04668f3c30a6"></td>
37
+ </tr>
38
+ <tr>
39
+ <td align="center">go-web.bat</td>
40
+ <td align="center">go-realtime-gui.bat</td>
41
+ </tr>
42
+ <tr>
43
+ <td align="center">実行したい操作を自由に選択できます。</td>
44
+ <td align="center">既に端から端までの170msの遅延を実現しました。ASIO入出力デバイスを使用すれば、端から端までの90msの遅延を達成できますが、ハードウェアドライバーの支援に非常に依存しています。</td>
45
+ </tr>
46
+ </table>
47
+
48
+ ## はじめに
49
+
50
+ 本リポジトリには下記の特徴があります。
51
+
52
+ - Top1 検索を用いることで、生の特徴量を学習用データセット特徴量に変換し、トーンリーケージを削減します。
53
+ - 比較的貧弱な GPU でも、高速かつ簡単に学習できます。
54
+ - 少量のデータセットからでも、比較的良い結果を得ることができます。(10 分以上のノイズの少ない音声を推奨します。)
55
+ - モデルを融合することで、音声を混ぜることができます。(ckpt processing タブの、ckpt merge を使用します。)
56
+ - 使いやすい WebUI。
57
+ - UVR5 Model も含んでいるため、人の声と BGM を素早く分離できます。
58
+ - 最先端の[人間の声のピッチ抽出アルゴリズム InterSpeech2023-RMVPE](#参照プロジェクト)を使用して無声音問題を解決します。効果は最高(著しく)で、crepe_full よりも速く、リソース使用が少ないです。
59
+ - AMD GPU と Intel GPU の加速サポート
60
+
61
+ デモ動画は[こちら](https://www.bilibili.com/video/BV1pm4y1z7Gm/)でご覧ください。
62
+
63
+ ## 環境構築
64
+ ### Python バージョン制限
65
+ > conda で Python 環境を管理することがお勧め���す
66
+
67
+ > バージョン制限の原因はこの [bug](https://github.com/facebookresearch/fairseq/issues/5012) を参照してください。
68
+
69
+ ```bash
70
+ python --version # 3.8 <= Python < 3.11
71
+ ```
72
+
73
+ ### Linux/MacOS ワンクリック依存関係インストール・起動するスクリプト
74
+ プロジェクトのルートディレクトリで`run.sh`を実行するだけで、`venv`仮想環境を一括設定し、必要な依存関係を自動的にインストールし、メインプログラムを起動できます。
75
+ ```bash
76
+ sh ./run.sh
77
+ ```
78
+
79
+ ### 依存関係のマニュアルインストレーション
80
+ 1. `pytorch`とそのコア依存関係をインストールします。すでにインストールされている場合は見送りできます。参考: https://pytorch.org/get-started/locally/
81
+ ```bash
82
+ pip install torch torchvision torchaudio
83
+ ```
84
+ 2. もし、Windows + Nvidia Ampere (RTX30xx)の場合、#21 の経験に基づき、pytorchの対応する CUDA バージョンを指定する必要があります。
85
+ ```bash
86
+ pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
87
+ ```
88
+ 3. 自分の GPU に対応する依存関係をインストールします。
89
+ - Nvidia GPU
90
+ ```bash
91
+ pip install -r requirements.txt
92
+ ```
93
+ - AMD/Intel GPU
94
+ ```bash
95
+ pip install -r requirements-dml.txt
96
+ ```
97
+ - AMD ROCM (Linux)
98
+ ```bash
99
+ pip install -r requirements-amd.txt
100
+ ```
101
+ - Intel IPEX (Linux)
102
+ ```bash
103
+ pip install -r requirements-ipex.txt
104
+ ```
105
+
106
+ ## その他のデータを準備
107
+
108
+ ### 1. アセット
109
+ > RVCは、`assets`フォルダにある幾つかのモデルリソースで推論・学習することが必要です。
110
+ #### リソースの自動チェック/ダウンロード(デフォルト)
111
+ > デフォルトでは、RVC は主プログラムの起動時に必要なリソースの完全性を自動的にチェックしできます。
112
+
113
+ > リソースが不完全でも、プログラムは起動し続けます。
114
+
115
+ - すべてのリソースをダウンロードしたい場合は、`--update`パラメータを追加してください。
116
+ - 起動時のリソース完全性チェックを不要の場合は、`--nocheck`パラメータを追加してください。
117
+
118
+ #### リソースのマニュアルダウンロード
119
+ > すべてのリソースファイルは[Hugging Face space](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)にあります。
120
+
121
+ > `tools`フォルダでそれらをダウンロードするスクリプトを見つけることができます。
122
+
123
+ > モデル/統合パッケージ/ツールの一括ダウンローダー、[RVC-Models-Downloader](https://github.com/RVC-Project/RVC-Models-Downloader)も使用できます。
124
+
125
+ 以下は、RVCが必要とするすべての事前モデルデータやその他のファイルの名前を含むリストです。
126
+
127
+ - ./assets/hubert/hubert_base.pt
128
+ ```bash
129
+ rvcmd assets/hubert # RVC-Models-Downloader command
130
+ ```
131
+ - ./assets/pretrained
132
+ ```bash
133
+ rvcmd assets/v1 # RVC-Models-Downloader command
134
+ ```
135
+ - ./assets/uvr5_weights
136
+ ```bash
137
+ rvcmd assets/uvr5 # RVC-Models-Downloader command
138
+ ```
139
+ v2バージョンのモデルを使用したい場合は、追加ダウンロードが必要です。
140
+
141
+ - ./assets/pretrained_v2
142
+ ```bash
143
+ rvcmd assets/v2 # RVC-Models-Downloader command
144
+ ```
145
+
146
+ ### 2. ffmpegツールのインストール
147
+ `ffmpeg`と`ffprobe`がすでにインストールされている場合は、このステップをスキップできます。
148
+
149
+ #### Ubuntu/Debian
150
+ ```bash
151
+ sudo apt install ffmpeg
152
+ ```
153
+ #### MacOS
154
+ ```bash
155
+ brew install ffmpeg
156
+ ```
157
+ #### Windows
158
+ ダウンロード後、ルートディレクトリに配置しましょう。
159
+ ```bash
160
+ rvcmd tools/ffmpeg # RVC-Models-Downloader command
161
+ ```
162
+ - [ffmpeg.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe)
163
+
164
+ - [ffprobe.exe](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe)
165
+
166
+ ### 3. RMVPE人声音高抽出アルゴリズムに必要なファイルのダウンロード
167
+
168
+ 最新のRMVPE人声音高抽出アルゴリズムを使用したい場合は、音高抽出モデルをダウンロードし、`assets/rmvpe`に配置する必要があります。
169
+
170
+ - [rmvpe.pt](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt)
171
+ ```bash
172
+ rvcmd assets/rmvpe # RVC-Models-Downloader command
173
+ ```
174
+
175
+ #### RMVPE(dml環境)のダウンロード(オプション、AMD/Intel GPU ユーザー)
176
+
177
+ - [rmvpe.onnx](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx)
178
+ ```bash
179
+ rvcmd assets/rmvpe # RVC-Models-Downloader command
180
+ ```
181
+
182
+ ### 4. AMD ROCM(オプション、Linuxのみ)
183
+
184
+ AMDのRocm技術を基にLinuxシステムでRVCを実行したい場合は、まず[ここ](https://rocm.docs.amd.com/en/latest/deploy/linux/os-native/install.html)で必要なドライバをインストールしてください。
185
+
186
+ Arch Linuxを使用している場合は、pacmanを使用して必要なドライバをインストールできま���。
187
+ ````
188
+ pacman -S rocm-hip-sdk rocm-opencl-sdk
189
+ ````
190
+ 一部のグラフィックカードモデルでは、以下のような環境変数を追加で設定する必要があるかもしれません(例:RX6700XT)。
191
+ ````
192
+ export ROCM_PATH=/opt/rocm
193
+ export HSA_OVERRIDE_GFX_VERSION=10.3.0
194
+ ````
195
+ また、現在のユーザーが`render`および`video`ユーザーグループに所属していることを確認してください。
196
+ ````
197
+ sudo usermod -aG render $USERNAME
198
+ sudo usermod -aG video $USERNAME
199
+ ````
200
+
201
+ ## 利用開始
202
+ ### 直接起動
203
+ 以下のコマンドで WebUI を起動します
204
+ ```bash
205
+ python infer-web.py
206
+ ```
207
+ ### Linux/MacOS
208
+ ```bash
209
+ ./run.sh
210
+ ```
211
+ ### IPEX 技術が必要な Intel GPU ユーザー向け(Linux のみ)
212
+ ```bash
213
+ source /opt/intel/oneapi/setvars.sh
214
+ ./run.sh
215
+ ```
216
+ ### 統合パッケージの使用 (Windowsのみ)
217
+ `RVC-beta.7z`をダウンロードして解凍し、`go-web.bat`をダブルクリック。
218
+ ```bash
219
+ rvcmd packs/general/latest # RVC-Models-Downloader command
220
+ ```
221
+
222
+ ## 参考プロジェクト
223
+ - [ContentVec](https://github.com/auspicious3000/contentvec/)
224
+ - [VITS](https://github.com/jaywalnut310/vits)
225
+ - [HIFIGAN](https://github.com/jik876/hifi-gan)
226
+ - [Gradio](https://github.com/gradio-app/gradio)
227
+ - [FFmpeg](https://github.com/FFmpeg/FFmpeg)
228
+ - [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
229
+ - [audio-slicer](https://github.com/openvpi/audio-slicer)
230
+ - [Vocal pitch extraction:RMVPE](https://github.com/Dream-High/RMVPE)
231
+ - 事前学習されたモデルは[yxlllc](https://github.com/yxlllc/RMVPE)と[RVC-Boss](https://github.com/RVC-Boss)によって学習され、テストされました。
232
+
233
+ ## すべての貢献者の努力に感謝します
234
+
235
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
236
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
237
+ </a>
docs/jp/faiss_tips_ja.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ faiss tuning TIPS
2
+ ==================
3
+ # about faiss
4
+ faissはfacebook researchの開発する、密なベクトルに対する近傍探索をまとめたライブラリで、多くの近似近傍探索の手法を効率的に実装しています。
5
+ 近似近傍探索はある程度精度を犠牲にしながら高速に類似するベクトルを探します。
6
+
7
+ ## faiss in RVC
8
+ RVCではHuBERTで変換した特徴量のEmbeddingに対し、学習データから生成されたEmbeddingと類似するものを検索し、混ぜることでより元の音声に近い変換を実現しています。ただ、この検索は愚直に行うと時間がかかるため、近似近傍探索を用いることで高速な変換を実現しています。
9
+
10
+ # 実装のoverview
11
+ モデルが配置されている '/logs/your-experiment/3_feature256'には各音声データからHuBERTで抽出された特徴量が配置されています。
12
+ ここからnpyファイルをファイル名でソートした順番で読み込み、ベクトルを連結してbig_npyを作成しfaissを学習させます。(このベクトルのshapeは[N, 256]です。)
13
+
14
+ 本Tipsではまずこれらのパラメータの意味を解説します。
15
+
16
+ # 手法の解説
17
+ ## index factory
18
+ index factoryは複数の近似近傍探索の手法を繋げるパイプラインをstringで表記するfaiss独自の記法です。
19
+ これにより、index factoryの文字列を変更するだけで様々な近似近傍探索の手法を試せます。
20
+ RVCでは以下のように使われています。
21
+
22
+ ```python
23
+ index = faiss.index_factory(256, "IVF%s,Flat" % n_ivf)
24
+ ```
25
+ index_factoryの引数のうち、1つ目はベクトルの次元数、2つ目はindex factoryの文字列で、3つ目には用いる距離を指定することができます。
26
+
27
+ より詳細な記法については
28
+ https://github.com/facebookresearch/faiss/wiki/The-index-factory
29
+
30
+ ## 距離指標
31
+ embeddingの類似度として用いられる代表的な指標として以下の二つがあります。
32
+
33
+ - ユークリッド距離(METRIC_L2)
34
+ - 内積(METRIC_INNER_PRODUCT)
35
+
36
+ ユークリッド距離では各次元において二乗の差をとり、全次元の差を足してから平方根をとります。これは日常的に用いる2次元、3次元での距離と同じです。
37
+ 内積はこのままでは類似度の指標として用いず、一般的にはL2ノルムで正規化してから内積をとるコサイン類似度を用います。
38
+
39
+ どちらがよいかは場合によりますが、word2vec等で得られるembeddingやArcFace等で学習した類似画像検索のモデルではコサイン類似度が用いられることが多いです。ベクトルXに対してl2正規化をnumpyで行う場合は、0 divisionを避けるために十分に小さな値をepsとして以下のコードで可能です。
40
+
41
+ ```python
42
+ X_normed = X / np.maximum(eps, np.linalg.norm(X, ord=2, axis=-1, keepdims=True))
43
+ ```
44
+
45
+ また、index factoryには第3引数に渡す値を選ぶことで計算に用いる距離指標を変更できます。
46
+
47
+ ```python
48
+ index = faiss.index_factory(dimention, text, faiss.METRIC_INNER_PRODUCT)
49
+ ```
50
+
51
+ ## IVF
52
+ IVF(Inverted file indexes)は全文検索における転置インデックスと似たようなアルゴリズムです。
53
+ 学習時には検索対象に対してkmeansでクラスタリングを行い、クラスタ中心を用いてボロノイ分割を行います。各データ点には一つずつクラスタが割り当てられるので、クラスタからデータ点を逆引きする辞書を作成します。
54
+
55
+ 例えば以下のようにクラスタが割り当てられた場合
56
+ |index|クラスタ|
57
+ |-----|-------|
58
+ |1|A|
59
+ |2|B|
60
+ |3|A|
61
+ |4|C|
62
+ |5|B|
63
+
64
+ 作成される転置インデックスは以下のようになります。
65
+
66
+ |クラスタ|index|
67
+ |-------|-----|
68
+ |A|1, 3|
69
+ |B|2, 5|
70
+ |C|4|
71
+
72
+ 検索時にはまずクラスタからn_probe個のクラスタを検索し、次にそれぞれのクラスタに属するデータ点について距離を計算します。
73
+
74
+ # 推奨されるパラメータ
75
+ indexの選び方については公式にガイドラインがあるので、それに準じて説明します。
76
+ https://github.com/facebookresearch/faiss/wiki/Guidelines-to-choose-an-index
77
+
78
+ 1M以下のデータセットにおいては4bit-PQが2023年4月時点ではfaissで利用できる最も効率的な手法です。
79
+ これをIVFと組み合わせ、4bit-PQで候補を絞り、最後に正確な指標で距離を再計算するには以下のindex factoryを用いることで記載できます。
80
+
81
+ ```python
82
+ index = faiss.index_factory(256, "IVF1024,PQ128x4fs,RFlat")
83
+ ```
84
+
85
+ ## IVFの推奨パラメータ
86
+ IVFの数が多すぎる場合、たとえばデータ数の数だけIVFによる粗量子化を行うと、これは愚直な全探索と同じになり効率が悪いです。
87
+ 1M以下の場合ではIVFの値はデータ点の数Nに対して4*sqrt(N) ~ 16*sqrt(N)に推奨しています。
88
+
89
+ n_probeはn_probeの数に比例して計算時間が増えるので、精度と相談して適切に選んでください。個人的にはRVCにおいてそこまで精度は必要ないと思うのでn_probe = 1で良いと思います。
90
+
91
+ ## FastScan
92
+ FastScanは直積量子化で大まかに距離を近似するのを、レジスタ内で行うことにより高速に行うようにした手法です。
93
+ 直積量子化は学習時にd次元ごと(通常はd=2)に独立してクラスタリングを行い、クラスタ同士の距離を事前計算してlookup tableを作成します。予測時はlookup tableを見ることで各次元の距離をO(1)で計算できます。
94
+ そのため、PQの次に指定する数字は通常ベクトルの半分の次元を指定します。
95
+
96
+ FastScanに関するより詳細な説明は公式のドキュメントを参照してください。
97
+ https://github.com/facebookresearch/faiss/wiki/Fast-accumulation-of-PQ-and-AQ-codes-(FastScan)
98
+
99
+ ## RFlat
100
+ RFlatはFastScanで計算した大まかな距離を、index factoryの第三引数で指定した正確な距離で再計算する指示です。
101
+ k個の近傍を取得する際は、k*k_factor個の点について再計算が行われます。
docs/jp/faq_ja.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Q1: ffmpeg error/utf8 error
2
+
3
+ 大体の場合、ffmpeg の問題ではなく、音声パスの問題です。<br>
4
+ ffmpeg は空白や()などの特殊文字を含むパスを読み込む際に ffmpeg error が発生する可能性があります。トレーニングセットの音声が中国語のパスを含む場合、filelist.txt に書き込む際に utf8 error が発生する可能性があります。<br>
5
+
6
+ ## Q2: ワンクリックトレーニングが終わってもインデックスがない
7
+
8
+ "Training is done. The program is closed."と表示された場合、モデルトレーニングは成功しています。その直後のエラーは誤りです。<br>
9
+
10
+ ワンクリックトレーニングが終了しても added で始まるインデックスファイルがない場合、トレーニングセットが大きすぎてインデックス追加のステップが停止している可能性があります。バッチ処理 add インデックスでメモリの要求が高すぎる問題を解決しました。一時的に「トレーニングインデックス」ボタンをもう一度クリックしてみてください。<br>
11
+
12
+ ## Q3: トレーニングが終了してもトレーニングセットの音色が見えない
13
+
14
+ 音色をリフレッシュしてもう一度確認してください。それでも見えない場合は、トレーニングにエラーがなかったか、コンソールと WebUI のスクリーンショット、logs/実験名の下のログを開発者に送って確認してみてください。<br>
15
+
16
+ ## Q4: モデルをどのように共有するか
17
+
18
+ rvc_root/logs/実験名の下に保存されている pth は、推論に使用するために共有するためのものではなく、実験の状態を保存して再現およびトレーニングを続けるためのものです。共有するためのモデルは、weights フォルダの下にある 60MB 以上の pth ファイルです。<br>
19
+    今後、weights/exp_name.pth と logs/exp_name/added_xxx.index を組み合わせて weights/exp_name.zip にパッケージ化し、インデックスの記入ステップを省略します。その場合、zip ファイルを共有し、pth ファイルは共有しないでください。別のマシンでトレーニングを続ける場合を除きます。<br>
20
+   logs フォルダの数百 MB の pth ファイルを weights フォルダにコピー/共有して推論に強制的に使用すると、f0、tgt_sr などのさまざまなキーが存在しないというエラーが発生する可能性があります。ckpt タブの一番下で、音高、目標オーディオサンプリングレートを手動または自動(ローカルの logs に関連情報が見つかる場合は自動的に)で選択してから、ckpt の小型モデルを抽出する必要があります(入力パスに G で始まるものを記入)。抽出が完了すると、weights フォルダに 60MB 以上の pth ファイルが表示され、音色をリフレッシュした後に使用できます。<br>
21
+
22
+ ## Q5: Connection Error
23
+
24
+ コンソール(黒いウィンドウ)を閉じた可能性があります。<br>
25
+
26
+ ## Q6: WebUI が Expecting value: line 1 column 1 (char 0)と表示する
27
+
28
+ システムのローカルネットワークプロキシ/グローバルプロキシを閉じてください。<br>
29
+
30
+ これはクライアントのプロキシだけでなく、サーバー側のプロキシも含まれます(例えば autodl で http_proxy と https_proxy を設定して学術的な加速を行っている場合、使用する際には unset でオフにする必要があります)。<br>
31
+
32
+ ## Q7: WebUI を使わずにコマンドでトレーニングや推論を行うには
33
+
34
+ トレーニングスクリプト:<br>
35
+ まず WebUI を実行し、メッセージウィンドウにデータセット処理とトレーニング用のコマンドラインが表示されます。<br>
36
+
37
+ 推論スクリプト:<br>
38
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py<br>
39
+
40
+ 例:<br>
41
+
42
+ runtime\python.exe myinfer.py 0 "E:\codes\py39\RVC-beta\todo-songs\1111.wav" "E:\codes\py39\logs\mi-test\added_IVF677_Flat_nprobe_7.index" harvest "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True<br>
43
+
44
+ f0up_key=sys.argv[1]<br>
45
+ input_path=sys.argv[2]<br>
46
+ index_path=sys.argv[3]<br>
47
+ f0method=sys.argv[4]#harvest or pm<br>
48
+ opt_path=sys.argv[5]<br>
49
+ model_path=sys.argv[6]<br>
50
+ index_rate=float(sys.argv[7])<br>
51
+ device=sys.argv[8]<br>
52
+ is_half=bool(sys.argv[9])<br>
53
+
54
+ ## Q8: Cuda error/Cuda out of memory
55
+
56
+ まれに cuda の設定問題やデバイスがサポートされていない可能性がありますが、大半はメモリ不足(out of memory)が原因です。<br>
57
+
58
+ トレーニングの場合は batch size を小さくします(1 にしても足りない場合はグラフィックカードを変更するしかありません)。推論の場合は、config.py の末尾にある x_pad、x_query、x_center、x_max を適宜小さくします。4GB 以下のメモリ(例えば 1060(3G)や各種 2GB のグラフィックカード)は諦めることをお勧めしますが、4GB のメモリのグラフィックカードはまだ救いがあります。<br>
59
+
60
+ ## Q9: total_epoch はどのくらいに設定するのが良いですか
61
+
62
+ トレーニングセットの音質が悪く、ノイズが多い場合は、20〜30 で十分です。高すぎると、ベースモデルの音質が低音質のトレーニングセットを高めることができません。<br>
63
+ トレーニングセットの音質が高く、ノイズが少なく、長い場合は、高く設定できます。200 は問題ありません(トレーニング速度が速いので、高音質のトレーニングセットを準備できる条件がある場合、グラフィックカードも条件が良いはずなので、少しトレーニング時間が長くなることを気にすることはありません)。<br>
64
+
65
+ ## Q10: トレーニングセットはどれくらいの長さが必要ですか
66
+
67
+ 10 分から 50 分を推奨します。
68
+    音質が良く、バックグラウンドノイズが低い場合、個人的な特徴のある音色であれば、多ければ多いほど良いです。
69
+    高品質のトレーニングセット(精巧に準備された + 特徴的な音色)であれば、5 分から 10 分でも大丈夫です。リポジトリの作者もよくこの方法で遊びます。
70
+   1 分から 2 分のデータでトレーニングに成功した人もいますが、その成功体験は他人には再現できないため、あまり参考になりません。トレーニングセットの音色が非常に特徴的である必要があります(例:高い周波数の透明な声や少女の声など)、そして音質が良い必要があります。
71
+   1 分未満のデータでトレーニングを試みた(成功した)ケースはまだ見たことがありません。このような試みはお勧めしません。
72
+
73
+ ## Q11: index rate は何に使うもので、どのように調整するのか(啓蒙)
74
+
75
+ もしベースモデルや推論ソースの音質がトレーニングセットよりも高い場合、推論結果の音質を向上させることができますが、音色がベースモデル/推論ソースの音色に近づくことがあります。これを「音色漏れ」と言います。
76
+   index rate は音色漏れの問題を減少させたり解決するために使用されます。1 に設定すると、理論的には推論ソースの音色漏れの問題は存在しませんが、音質はトレーニングセットに近づきます。トレーニングセットの音質が推論ソースよりも低い場合、index rate を高くすると音質が低下する可能性があります。0 に設定すると、検索ミックスを利用してトレーニングセットの音色を保護する効果はありません。
77
+    トレーニングセットが高品質で長い場合、total_epoch を高く設定することができ、この場合、モデル自体は推論ソースやベースモデルの音色をあまり参照しないため、「音色漏れ」の問題はほとんど発生しません。この時、index rate は重要ではなく、インデックスファイルを作成したり共有したりする必要もありません。
78
+
79
+ ## Q11: 推論時に GPU をどのように選択するか
80
+
81
+ config.py ファイルの device cuda:の後にカード番号を選択します。
82
+ カード番号とグラフィックカードのマッピング関係は、トレーニングタブのグラフィックカード情報欄で確認できます。
83
+
84
+ ## Q12: トレーニング中に保存された pth ファイルをどのように推論するか
85
+
86
+ ckpt タブの一番下で小型モデルを抽出します。
87
+
88
+ ## Q13: トレーニングをどのように中断し、続行するか
89
+
90
+ 現在の段階では、WebUI コンソールを閉じて go-web.bat をダブルクリックしてプログラムを再起動するしかありません。ウェブページのパラメータもリフレッシュして再度入力する必要があります。
91
+ トレーニングを続けるには:同じウェブページのパラメータでトレーニングモデルをクリックすると、前回のチェックポイントからトレーニングを続けます。
92
+
93
+ ## Q14: トレーニング中にファイルページ/メモリエラーが発生した場合の対処法
94
+
95
+ プロセスが多すぎてメモリがオーバーフローしました。以下の方法で解決できるかもしれません。
96
+
97
+ 1. 「音高抽出とデータ処理に使用する CPU プロセス数」を適宜下げます。
98
+ 2. トレーニングセットのオーディオを手動でカットして、あまり長くならないようにします。
99
+
100
+ ## Q15: 途中でデータを追加してトレーニングする方法
101
+
102
+ 1. 全データに新しい実験名を作成します。
103
+ 2. 前回の最新の G と D ファイル(あるいはどの中間 ckpt を基にトレーニングしたい場合は、その中間のものをコピーすることもできます)を新しい実験名にコピーします。
104
+ 3. 新しい実験名でワンクリックトレーニングを開始すると、前回の最新の進捗からトレーニングを続けます。
105
+
106
+ ## Q16: llvmlite.dll に関するエラー
107
+
108
+ ```bash
109
+ OSError: Could not load shared object file: llvmlite.dll
110
+
111
+ FileNotFoundError: Could not find module lib\site-packages\llvmlite\binding\llvmlite.dll (or one of its dependencies). Try using the full path with constructor syntax.
112
+ ```
113
+
114
+ Windows プラットフォームではこのエラーが発生しますが、https://aka.ms/vs/17/release/vc_redist.x64.exeをインストールしてWebUIを再起動すれば解決します。
115
+
116
+ ## Q17: RuntimeError: テンソルの拡張サイズ(17280)は、非シングルトン次元 1 での既存サイズ(0)と一致する必要があります。 ターゲットサイズ:[1, 17280]。 テンソルサイズ:[0]
117
+
118
+ wavs16k フォルダーの下で、他のファイルよりも明らかに小さいいくつかのオーディオファイルを見つけて削除し、トレーニングモデルをクリックすればエラーは発生しませんが、ワンクリックプロセスが中断されたため、モデルのトレーニングが完了したらインデックスのトレーニングをクリックする必要があります。
119
+
120
+ ## Q18: RuntimeError: テンソル a のサイズ(24)は、非シングルトン次元 2 でテンソル b(16)のサイズと一致する必要があります
121
+
122
+ トレーニング中にサンプリングレートを変更してはいけません。変更する必要がある場合は、実験名を変更して最初からトレーニングする必要があります。もちろん、前回抽出した音高と特徴(0/1/2/2b フォルダ)をコピーしてトレーニングプロセスを加速することもできます。
docs/jp/training_tips_ja.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ RVCの訓練における説明、およびTIPS
2
+ ===============================
3
+ 本TIPSではどのようにデータの訓練が行われているかを説明します。
4
+
5
+ # 訓練の流れ
6
+ GUIの訓練タブのstepに沿って説明します。
7
+
8
+ ## step1
9
+ 実験名の設定を行います。
10
+
11
+ また、モデルに音高ガイド(ピッチ)を考慮させるかもここで設定できます。考慮させない場合はモデルは軽量になりますが、歌唱には向かなくなります。
12
+
13
+ 各実験のデータは`/logs/実験名/`に配置されます。
14
+
15
+ ## step2a
16
+ 音声の読み込みと前処理を行います。
17
+
18
+ ### load audio
19
+ 音声のあるフォルダを指定すると、そのフォルダ内にある音声ファイルを自動で読み込みます。
20
+ 例えば`C:Users\hoge\voices`を指定した場合、`C:Users\hoge\voices\voice.mp3`は読み込まれますが、`C:Users\hoge\voices\dir\voice.mp3`は読み込まれません。
21
+
22
+ 音声の読み込みには内部でffmpegを利用しているので、ffmpegで対応している拡張子であれば自動的に読み込まれます。
23
+ ffmpegでint16に変換した後、float32に変換し、-1 ~ 1の間に正規化されます。
24
+
25
+ ### denoising
26
+ 音声についてscipyのfiltfiltによる平滑化を行います。
27
+
28
+ ### 音声の分割
29
+ 入力した音声はまず、一定期間(max_sil_kept=5秒?)より長く無音が続く部分を検知して音声を分割します。無音で音声を分割した後は、0.3秒のoverlapを含む4秒ごとに音声を分割します。4秒以内に区切られた音声は、音量の正規化を行った後wavファイルを`/logs/実験名/0_gt_wavs`に、そこから16kのサンプリングレートに変換して`/logs/実験名/1_16k_wavs`にwavファイルで保存します。
30
+
31
+ ## step2b
32
+ ### ピッチの抽出
33
+ wavファイルからピッチ(音の高低)の情報を抽出します。parselmouthやpyworldに内蔵されている手法でピッチ情報(=f0)を抽出し、`/logs/実験名/2a_f0`に保存します。その後、ピッチ情報を対数で変換して1~255の整数に変換し、`/logs/実験名/2b-f0nsf`に保存します。
34
+
35
+ ### feature_printの抽出
36
+ HuBERTを用いてwavファイルを事前にembeddingに変換します。`/logs/実験名/1_16k_wavs`に保存したwavファイルを読み込み、HuBERTでwavファイルを256次元の特徴量に変換し、npy形式で`/logs/実験名/3_feature256`に保存します。
37
+
38
+ ## step3
39
+ モデルのトレーニングを行います。
40
+ ### 初心者向け用語解説
41
+ 深層学習ではデータセットを分割し、少しずつ学習を進めていきます。一回のモデルの更新(step)では、batch_size個のデータを取り出し予測と誤差の修正を行います。これをデータセットに対して一通り行うと一epochと数えます。
42
+
43
+ そのため、学習時間は 1step当たりの学習時間 x (データセット内のデータ数 ÷ バッチサイズ) x epoch数 かかります。一般にバッチサイズを大きくするほど学習は安定し、(1step当たりの学習時間÷バッチサイズ)は小さくなりますが、その分GPUのメモリを多く使用します。GPUのRAMはnvidia-smiコマンド等で確認できます。実行環境のマシンに合わせてバッチサイズをできるだけ大きくするとより短時間で学習が可能です。
44
+
45
+ ### pretrained modelの指定
46
+ RVCではモデルの訓練を0からではなく、事前学習済みの重みから開始するため、少ないデータセットで学習を行えます。
47
+
48
+ デフォルトでは
49
+
50
+ - 音高ガイドを考慮する場合、`RVCのある場所/pretrained/f0G40k.pth`と`RVCのある場所/pretrained/f0D40k.pth`を読み込みます。
51
+ - 音高ガイドを考慮しない場合、`RVCのある場所/pretrained/G40k.pth`と`RVCのある場所/pretrained/D40k.pth`を読み込みます。
52
+
53
+ 学習時はsave_every_epochごとにモデルのパラメータが`logs/実験名/G_{}.pth`と`logs/実験名/D_{}.pth`に保存されますが、このパスを指定することで学習を再開したり、もしくは違う実験で学習したモデルの重みから学習を開始できます。
54
+
55
+ ### indexの学習
56
+ RVCでは学習時に使われたHuBERTの特徴量を保存し、推論時は学習時の特徴量から近い特徴量を探してきて推論を行います。この検索を高速に行うために事前にindexの学習を行います。
57
+ indexの学習には近似近傍探索ライブラリのfaissを用います。`/logs/実験名/3_feature256`の特徴量を読み込み、それを用いて学習したindexを`/logs/実験名/add_XXX.index`として保存します。
58
+ (20230428updateよりtotal_fea.npyはindexから読み込むので不要になりました。)
59
+
60
+ ### ボタンの説明
61
+ - モデルのトレーニング: step2bまでを実行した後、このボタンを押すとモデルの学習を行います。
62
+ - 特徴インデックスのトレーニング: モデルのトレーニング後、indexの学習を行います。
63
+ - ワンクリックトレーニング: step2bまでとモデルのトレーニング、特徴インデックスのトレーニングを一括で行います。
64
+
docs/kr/Changelog_KO.md ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### 2023년 10월 6일 업데이트
2
+
3
+ 실시간 음성 변환을 위한 인터페이스인 go-realtime-gui.bat/gui_v1.py를 제작했습니다(사실 이는 이미 존재했었습니다). 이번 업데이트는 주로 실시간 음성 변환 성능을 최적화하는 데 중점을 두었습니다. 0813 버전과 비교하여:
4
+
5
+ - 1. 인터페이스 조작 최적화: 매개변수 핫 업데이트(매개변수 조정 시 중단 후 재시작 필요 없음), 모델 지연 로딩(이미 로드된 모델은 재로드 필요 없음), 음량 인자 매개변수 추가(음량을 입력 오디오에 가깝게 조정)
6
+ - 2. 내장된 노이즈 감소 효과 및 속도 최적화
7
+ - 3. 추론 속도 크게 향상
8
+
9
+ 입력 및 출력 장치는 동일한 유형을 선택해야 합니다. 예를 들어, 모두 MME 유형을 선택해야 합니다.
10
+
11
+ 1006 버전의 전체 업데이트는 다음과 같습니다:
12
+
13
+ - 1. rmvpe 음성 피치 추출 알고리즘의 효과를 계속해서 향상, 특히 남성 저음역에 대한 개선이 큼
14
+ - 2. 추론 인터페이스 레이아웃 최적화
15
+
16
+ ### 2023년 08월 13일 업데이트
17
+
18
+ 1-정기적인 버그 수정
19
+
20
+ - 최소 총 에포크 수를 1로 변경하고, 최소 총 에포크 수를 2로 변경합니다.
21
+ - 사전 훈련(pre-train) 모델을 사용하지 않는 훈련 오류 수정
22
+ - 반주 보컬 분리 후 그래픽 메모리 지우기
23
+ - 페이즈 저장 경로 절대 경로를 상대 경로로 변경
24
+ - 공백이 포함된 경로 지원(훈련 세트 경로와 실험 이름 모두 지원되며 더 이상 오류가 보고되지 않음)
25
+ - 파일 목록에서 필수 utf8 인코딩 취소
26
+ - 실시간 음성 변경 중 faiss 검색으로 인한 CPU 소모 문제 해결
27
+
28
+ 2-키 업데이트
29
+
30
+ - 현재 가장 강력한 오픈 소스 보컬 피치 추출 모델 RMVPE를 훈련하고, 이를 RVC 훈련, 오프라인/실시간 추론에 사용하며, PyTorch/Onx/DirectML을 지원합니다.
31
+ - 파이토치\_DML을 통한 AMD 및 인텔 그래픽 카드 지원
32
+ (1) 실시간 음성 변화 (2) 추론 (3) 보컬 반주 분리 (4) 현재 지원되지 않는 훈련은 CPU 훈련으로 전환, Onnx_Dml을 통한 gpu의 RMVPE 추론 지원
33
+
34
+ ### 2023년 6월 18일 업데이트
35
+
36
+ - v2 버전에서 새로운 32k와 48k 사전 학습 모델을 추가.
37
+ - non-f0 모델들의 추론 오류 수정.
38
+ - 학습 세트가 1시간을 넘어가는 경우, 인덱스 생성 단계에서 minibatch-kmeans을 사용해, 학습속도 가속화.
39
+ - [huggingface](https://huggingface.co/spaces/lj1995/vocal2guitar)에서 vocal2guitar 제공.
40
+ - 데이터 처리 단계에서 이상 값 자동으로 제거.
41
+ - ONNX로 내보내는(export) 옵션 탭 추가.
42
+
43
+ 업데이트에 적용되지 않았지만 시도한 것들 :
44
+
45
+ - ~~시계열 차원을 추가하여 특징 검색을 진행했지만, 유의미한 효과는 없었습니다.~~
46
+ - ~~PCA 차원 축소를 추가하여 특징 검색을 진행했지만, 유의미한 효과는 없었습니다.~~
47
+ - ~~ONNX 추론을 지원하는 것에 실패했습니다. nsf 생성시, Pytorch가 필요하기 때문입니다.~~
48
+ - ~~훈련 중에 입력에 대한 음고, 성별, 이퀄라이저, 노이즈 등 무작위로 강화하는 것에, 유의미한 효과는 없었습니다.~~
49
+
50
+ 추후 업데이트 목록:
51
+
52
+ - ~~Vocos-RVC (소형 보코더) 통합 예정.~~
53
+ - ~~학습 단계에 음고 인식을 위한 Crepe 지원 예정.~~
54
+ - ~~Crepe의 정밀도를 REC-config와 동기화하여 지원 예정.~~
55
+ - FO 에디터 지원 예정.
56
+
57
+ ### 2023년 5월 28일 업데이트
58
+
59
+ - v2 jupyter notebook 추가, 한국어 업데이트 로그 추가, 의존성 모듈 일부 수정.
60
+ - 무성음 및 숨소리 보호 모드 추가.
61
+ - crepe-full pitch 감지 지원.
62
+ - UVR5 보컬 분리: 디버브 및 디-에코 모델 지원.
63
+ - index 이름에 experiment 이름과 버전 추가.
64
+ - 배치 음성 변환 처리 및 UVR5 보컬 분리 시, 사용자가 수동으로 출력 오디오의 내보내기(export) 형식을 선택할 수 있도록 지원.
65
+ - 32k 훈련 모델 지원 종료.
66
+
67
+ ### 2023년 5월 13일 업데이트
68
+
69
+ - 원클릭 패키지의 이전 버전 런타임 내, 불필요한 코드(lib.infer_pack 및 uvr5_pack) 제거.
70
+ - 훈련 세트 전처리의 유사 다중 처리 버그 수정.
71
+ - Harvest 피치 인식 알고리즘에 대한 중위수 필터링 반경 조정 추가.
72
+ - 오디오 내보낼 때, 후처리 리샘플링 지원.
73
+ - 훈련에 대한 다중 처리 "n_cpu" 설정이 "f0 추출"에서 "데이터 전처리 및 f0 추출"로 변경.
74
+ - logs 폴더 하의 인덱스 경로를 자동으로 감지 및 드롭다운 목록 기능 제공.
75
+ - 탭 페이지에 "자주 묻는 질문과 답변" 추가. (github RVC wiki 참조 가능)
76
+ - 동일한 입력 오디오 경로를 사용할 때 추론, Harvest 피치를 캐시.
77
+ (주의: Harvest 피치 추출을 사용하면 전체 파이프라인은 길고 반복적인 피치 추출 과정을 거치게됩니다. 캐싱을 하지 않는다면, 첫 inference 이후의 단계에서 timbre, 인덱스, 피치 중위수 필터링 반경 설정 등 대기시간이 엄청나게 길어집니다!)
78
+
79
+ ### 2023년 5월 14일 업데이트
80
+
81
+ - 입력의 볼륨 캡슐을 사용하여 출력의 볼륨 캡슐을 혼합하거나 대체. (입력이 무음이거나 출력의 노이즈 문제를 최소화 할 수 있습니다. 입력 오디오의 배경 노이즈(소음)가 큰 경우 해당 기능을 사용하지 않는 것이 좋습니다. 기본적으로 비활성화 되어있는 옵션입니다. (1: 비활성화 상태))
82
+ - 추출된 소형 모델을 지정된 빈도로 저장하는 기능을 지원. (다양한 에폭 하에서의 성능을 보려고 하지만 모든 대형 체크포인트를 저장하고 매번 ckpt 처리를 통해 소형 모델을 수동으로 추출하고 싶지 않은 경우 이 기능은 매우 유용합니다)
83
+ - 환경 변수를 설정하여 서버의 전역 프록시로 인한 "연결 오류" 문제 해결.
84
+ - 사전 훈련된 v2 모델 지원. (현재 40k 버전만 테스트를 위해 공개적으로 사용 가능하며, 다른 두 개의 샘플링 비율은 아직 완전히 훈련되지 않아 보류되었습니다.)
85
+ - 추론 전, 1을 초과하는 과도한 볼륨 제한.
86
+ - 데이터 전처리 매개변수 미세 조정.
87
+
88
+ ### 2023년 4월 9일 업데이트
89
+
90
+ - GPU 이용률 향상을 위해 훈련 파라미터 수정: A100은 25%에서 약 90%로 증가, V100: 50%에서 약 90%로 증가, 2060S: 60%에서 약 85%로 증가, P40: 25%에서 약 95%로 증가.
91
+ 훈련 속도가 크게 향상.
92
+ - 매개변수 기준 변경: total batch_size는 GPU당 batch_size를 의미.
93
+ - total_epoch 변경: 최대 한도가 100에서 1000으로 증가. 기본값이 10에서 20으로 증가.
94
+ - ckpt 추출이 피치를 잘못 인식하여 비정상적인 추론을 유발하는 문제 수정.
95
+ - 분산 훈련 과정에서 각 랭크마다 ckpt를 저장하는 문제 수정.
96
+ - 특성 추출 과정에 나노 특성 필터링 적용.
97
+ - 무음 입력/출력이 랜덤하게 소음을 생성하는 문제 수정. (이전 모델은 새 데이터셋으로 다시 훈련해야 합니다)
98
+
99
+ ### 2023년 4월 16일 업데이트
100
+
101
+ - 로컬 실시간 음성 변경 미니-GUI 추가, go-realtime-gui.bat를 더블 클릭하여 시작.
102
+ - 훈련 및 추론 중 50Hz 이하의 주파수 대역에 대해 필터링 적용.
103
+ - 훈련 및 추론의 pyworld 최소 피치 추출을 기본 80에서 50으로 낮춤. 이로 인해, 50-80Hz 사이의 남성 저음이 무음화되지 않습니다.
104
+ - 시스템 지역에 따른 WebUI 언어 변경 지원. (현재 en_US, ja_JP, zh_CN, zh_HK, zh_SG, zh_TW를 지원하며, 지원되지 않는 경우 기본값은 en_US)
105
+ - 일부 GPU의 인식 수정. (예: V100-16G 인식 실패, P4 인식 실패)
106
+
107
+ ### 2023년 4월 28일 업데이트
108
+
109
+ - Faiss 인덱스 설정 업그레이드로 속도가 더 빨라지고 품질이 향상.
110
+ - total_npy에 대한 의존성 제거. 추후의 모델 공유는 total_npy 입력을 필요로 하지 않습니다.
111
+ - 16 시리즈 GPU에 대한 제한 해제, 4GB VRAM GPU에 대한 4GB 추론 설정 제공.
112
+ - 일부 오디오 형식에 대한 UVR5 보컬 동반 분리에서의 버그 수정.
113
+ - 실시간 음성 변경 미니-GUI는 이제 non-40k 및 non-lazy 피치 모델을 지원합니다.
114
+
115
+ ### 추후 계획
116
+
117
+ Features:
118
+
119
+ - 다중 사용자 훈련 탭 지원.(최대 4명)
120
+
121
+ Base model:
122
+
123
+ - 훈련 데이터셋에 숨소리 wav 파일을 추가하여, 보컬의 호흡이 노이즈로 변환되는 문제 수정.
124
+ - 보컬 훈련 세트의 기본 모델을 추가하기 위한 작업을 진행중이며, 이는 향후에 발표될 예정.
docs/kr/README.ko.han.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ <h1>Retrieval-based-Voice-Conversion-WebUI</h1>
4
+ VITS基盤의 簡單하고使用하기 쉬운音聲變換틀<br><br>
5
+
6
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange
7
+ )](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
8
+
9
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
10
+
11
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
12
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
13
+ [![Licence](https://img.shields.io/github/license/RVC-Project/Retrieval-based-Voice-Conversion-WebUI?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
14
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
15
+
16
+ [![Discord](https://img.shields.io/badge/RVC%20Developers-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
17
+
18
+ </div>
19
+
20
+ ------
21
+ [**更新日誌**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/Changelog_KO.md)
22
+
23
+ [**English**](../en/README.en.md) | [**中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Français**](../fr/README.fr.md) | [**Türkçe**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
24
+
25
+ > [示範映像](https://www.bilibili.com/video/BV1pm4y1z7Gm/)을 確認해 보세요!
26
+
27
+ > RVC를活用한實時間音聲變換: [w-okada/voice-changer](https://github.com/w-okada/voice-changer)
28
+
29
+ > 基本모델은 50時間假量의 高品質 오픈 소스 VCTK 데이터셋을 使用하였으므로, 著作權上의 念慮가 없으니 安心하고 使用하시기 바랍니다.
30
+
31
+ > 著作權問題가 없는 高品質의 노래를 以後에도 繼續해서 訓練할 豫定입니다.
32
+
33
+ ## 紹介
34
+ 本Repo는 다음과 같은 特徵을 가지고 있습니다:
35
+ + top1檢索을利用하여 入力音色特徵을 訓練세트音色特徵으로 代替하여 音色의漏出을 防止;
36
+ + 相對的으로 낮은性能의 GPU에서도 빠른訓練可能;
37
+ + 적은量의 데이터로 訓練해도 좋은 結果를 얻을 수 있음 (最小10分以上의 低雜음音聲데이터를 使用하는 것을 勸獎);
38
+ + 모델融合을通한 音色의 變調可能 (ckpt處理탭->ckpt混合選擇);
39
+ + 使用하기 쉬운 WebUI (웹 使用者인터페이스);
40
+ + UVR5 모델을 利用하여 목소리와 背景音樂의 빠른 分離;
41
+
42
+ ## 環境의準備
43
+ poetry를通해 依存를設置하는 것을 勸獎합니다.
44
+
45
+ 다음命令은 Python 버전3.8以上의環境에서 實行되어야 합니다:
46
+ ```bash
47
+ # PyTorch 關聯主要依存設置, 이미設置되어 있는 境遇 건너뛰기 可能
48
+ # 參照: https://pytorch.org/get-started/locally/
49
+ pip install torch torchvision torchaudio
50
+
51
+ # Windows + Nvidia Ampere Architecture(RTX30xx)를 使用하고 있다面, #21 에서 명시된 것과 같이 PyTorch에 맞는 CUDA 버전을 指定해야 합니다.
52
+ #pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
53
+
54
+ # Poetry 設置, 이미設置되어 있는 境遇 건너뛰기 可能
55
+ # Reference: https://python-poetry.org/docs/#installation
56
+ curl -sSL https://install.python-poetry.org | python3 -
57
+
58
+ # 依存設置
59
+ poetry install
60
+ ```
61
+ pip를 活用하여依存를 設置하여도 無妨합니다.
62
+
63
+ ```bash
64
+ pip install -r requirements.txt
65
+ ```
66
+
67
+ ## 其他預備모델準備
68
+ RVC 모델은 推論과訓練을 依하여 다른 預備모델이 必要합니다.
69
+
70
+ [Huggingface space](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)를 通해서 다운로드 할 수 있습니다.
71
+
72
+ 다음은 RVC에 必要한 預備모델 및 其他 파일 目錄입니다:
73
+ ```bash
74
+ ./assets/hubert/hubert_base.pt
75
+
76
+ ./assets/pretrained
77
+
78
+ ./assets/uvr5_weights
79
+
80
+ V2 버전 모델을 테스트하려면 추가 다운로드가 필요합니다.
81
+
82
+ ./assets/pretrained_v2
83
+
84
+ # Windows를 使用하는境遇 이 사전도 必要할 수 있습니다. FFmpeg가 設置되어 있으면 건너뛰어도 됩니다.
85
+ ffmpeg.exe
86
+ ```
87
+ 그後 以下의 命令을 使用하여 WebUI를 始作할 수 있습니다:
88
+ ```bash
89
+ python infer-web.py
90
+ ```
91
+ Windows를 使用하는境遇 `RVC-beta.7z`를 다운로드 및 壓縮解除하여 RVC를 直接使用하거나 `go-web.bat`을 使用하여 WebUi를 直接할 수 있습니다.
92
+
93
+ ## 參考
94
+ + [ContentVec](https://github.com/auspicious3000/contentvec/)
95
+ + [VITS](https://github.com/jaywalnut310/vits)
96
+ + [HIFIGAN](https://github.com/jik876/hifi-gan)
97
+ + [Gradio](https://github.com/gradio-app/gradio)
98
+ + [FFmpeg](https://github.com/FFmpeg/FFmpeg)
99
+ + [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
100
+ + [audio-slicer](https://github.com/openvpi/audio-slicer)
101
+ ## 모든寄與者분들의勞力에感謝드립니다
102
+
103
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
104
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
105
+ </a>
106
+
docs/kr/README.ko.md ADDED
@@ -0,0 +1,259 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ <h1>Retrieval-based-Voice-Conversion-WebUI</h1>
4
+ VITS 기반의 간단하고 사용하기 쉬운 음성 변환 프레임워크.<br><br>
5
+
6
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
7
+
8
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
9
+
10
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
11
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
12
+ [![Licence](https://img.shields.io/badge/LICENSE-MIT-green.svg?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
13
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
14
+
15
+ [![Discord](https://img.shields.io/badge/RVC%20Developers-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
16
+
17
+ [**업데이트 로그**](./Changelog_KO.md) | [**자주 묻는 질문**](./faq_ko.md) | [**AutoDL·5원으로 AI 가수 훈련**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/Autodl%E8%AE%AD%E7%BB%83RVC%C2%B7AI%E6%AD%8C%E6%89%8B%E6%95%99%E7%A8%8B) | [**대조 실험 기록**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/%E5%AF%B9%E7%85%A7%E5%AE%9E%E9%AA%8C%C2%B7%E5%AE%9E%E9%AA%8C%E8%AE%B0%E5%BD%95) | [**온라인 데모**](https://modelscope.cn/studios/FlowerCry/RVCv2demo)
18
+
19
+ [**English**](../en/README.en.md) | [**中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Français**](../fr/README.fr.md) | [**Türkçe**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
20
+
21
+ </div>
22
+
23
+ > [데모 영상](https://www.bilibili.com/video/BV1pm4y1z7Gm/)을 확인해 보세요!
24
+
25
+ > RVC를 활용한 실시간 음성변환: [w-okada/voice-changer](https://github.com/w-okada/voice-changer)
26
+
27
+ > 기본 모델은 50시간 가량의 고퀄리티 오픈 소스 VCTK 데이터셋을 사용하였으므로, 저작권상의 염려가 없으니 안심하고 사용하시기 바랍니다.
28
+
29
+ > 더 큰 매개변수, 더 큰 데이터, 더 나은 효과, 기본적으로 동일한 추론 속도, 더 적은 양의 훈련 데이터가 필요한 RVCv3의 기본 모델을 기대해 주십시오.
30
+
31
+ <table>
32
+ <tr>
33
+ <td align="center">훈련 및 추론 인터페이스</td>
34
+ <td align="center">실시간 음성 변환 인터페이스</td>
35
+ </tr>
36
+ <tr>
37
+ <td align="center"><img src="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/129054828/092e5c12-0d49-4168-a590-0b0ef6a4f630"></td>
38
+ <td align="center"><img src="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/assets/129054828/730b4114-8805-44a1-ab1a-04668f3c30a6"></td>
39
+ </tr>
40
+ <tr>
41
+ <td align="center">go-web.bat</td>
42
+ <td align="center">go-realtime-gui.bat</td>
43
+ </tr>
44
+ <tr>
45
+ <td align="center">원하는 작업을 자유롭게 선택할 수 있습니다.</td>
46
+ <td align="center">우리는 이미 끝에서 끝까지 170ms의 지연을 실현했습니다. ASIO 입력 및 출력 장치를 사용하면 끝에서 끝까지 90ms의 지연을 달성할 수 있지만, 이는 하드웨어 드라이버 지원에 매우 의존적입니다.</td>
47
+ </tr>
48
+ </table>
49
+
50
+ ## 소개
51
+
52
+ 본 Repo는 다음과 같은 특징을 가지고 있습니다:
53
+
54
+ - top1 검색을 이용하여 입력 음색 특징을 훈련 세트 음색 특징으로 대체하여 음색의 누출을 방지
55
+ - 상대적으로 낮은 성능의 GPU에서도 빠른 훈련 가능
56
+ - 적은 양의 데이터로 훈련해도 좋은 결과를 얻을 수 있음 (최소 10분 이상의 저잡음 음성 데이터를 사용하는 것을 권장)
57
+ - 모델 융합을 통한 음색의 변조 가능 (ckpt 처리 탭->ckpt 병합 선택)
58
+ - 사용하기 쉬운 WebUI (웹 인터페이스)
59
+ - UVR5 모델을 이용하여 목소리와 배경음악의 빠른 분리;
60
+ - 최첨단 [음성 피치 추출 알고리즘 InterSpeech2023-RMVPE](#参考项目)을 사용하여 무성음 문제를 해결합니다. 효과는 최고(압도적)이며 crepe_full보다 더 빠르고 리소스 사용이 적음
61
+ - A카드와 I카드 가속을 지원
62
+
63
+ 해당 프로젝트의 [데모 비디오](https://www.bilibili.com/video/BV1pm4y1z7Gm/)를 확인해보세요!
64
+
65
+ ## 환경 설정
66
+
67
+ 다음 명령은 Python 버전이 3.8 이상인 환경에서 실행해야 합니다.
68
+
69
+ ### Windows/Linux/MacOS 등 플랫폼 공통 방법
70
+
71
+ 아래 방법 중 하나를 선택하세요.
72
+
73
+ #### 1. pip를 통한 의존성 설치
74
+
75
+ 1. Pytorch 및 의존성 모듈 설치, 이미 설치되어 있으면 생략. 참조: https://pytorch.org/get-started/locally/
76
+
77
+ ```bash
78
+ pip install torch torchvision torchaudio
79
+ ```
80
+
81
+ 2. win 시스템 + Nvidia Ampere 아키텍처(RTX30xx) 사용 시, #21의 사례에 따라 pytorch에 해당하는 cuda 버전을 지정
82
+
83
+ ```bash
84
+ pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
85
+ ```
86
+
87
+ 3. 자신의 그래픽 카드에 맞는 의존성 설치
88
+
89
+ - N카드
90
+
91
+ ```bash
92
+ pip install -r requirements.txt
93
+ ```
94
+
95
+ - A카드/I카드
96
+
97
+ ```bash
98
+ pip install -r requirements-dml.txt
99
+ ```
100
+
101
+ - A카드ROCM(Linux)
102
+
103
+ ```bash
104
+ pip install -r requirements-amd.txt
105
+ ```
106
+
107
+ - I카드IPEX(Linux)
108
+
109
+ ```bash
110
+ pip install -r requirements-ipex.txt
111
+ ```
112
+
113
+ #### 2. poetry를 통한 의존성 설치
114
+
115
+ Poetry 의존성 관리 도구 설치, 이미 설치된 경우 생략. 참조: https://python-poetry.org/docs/#installation
116
+
117
+ ```bash
118
+ curl -sSL https://install.python-poetry.org | python3 -
119
+ ```
120
+
121
+ poetry를 통한 의존성 설치
122
+
123
+ ```bash
124
+ poetry install
125
+ ```
126
+
127
+ ### MacOS
128
+
129
+ `run.sh`를 통해 의존성 설치 가능
130
+
131
+ ```bash
132
+ sh ./run.sh
133
+ ```
134
+
135
+ ## 기타 사전 훈련된 모델 준비
136
+
137
+ RVC는 추론과 훈련을 위해 다른 일부 사전 훈련된 모델이 필요합니다.
138
+
139
+ 이러한 모델은 저희의 [Hugging Face space](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)에서 다운로드할 수 있습니다.
140
+
141
+ ### 1. assets 다운로드
142
+
143
+ 다음은 RVC에 필요한 모든 사전 훈련된 모델과 기타 파일의 목록입니다. `tools` 폴더에서 이들을 다운로드하는 스크립트를 찾을 수 있습니다.
144
+
145
+ - ./assets/hubert/hubert_base.pt
146
+
147
+ - ./assets/pretrained
148
+
149
+ - ./assets/uvr5_weights
150
+
151
+ v2 버전 모델을 사용하려면 추가로 다음을 다운로드해야 합니다.
152
+
153
+ - ./assets/pretrained_v2
154
+
155
+ ### 2. ffmpeg 설치
156
+
157
+ ffmpeg와 ffprobe가 이미 설치되어 있다면 건너뜁니다.
158
+
159
+ #### Ubuntu/Debian 사용자
160
+
161
+ ```bash
162
+ sudo apt install ffmpeg
163
+ ```
164
+
165
+ #### MacOS 사용자
166
+
167
+ ```bash
168
+ brew install ffmpeg
169
+ ```
170
+
171
+ #### Windows 사용자
172
+
173
+ 다운로드 후 루트 디렉토리에 배치.
174
+
175
+ - [ffmpeg.exe 다운로드](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe)
176
+
177
+ - [ffprobe.exe 다운로드](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe)
178
+
179
+ ### 3. RMVPE 인간 음성 피치 추출 알고리즘에 필요한 파일 다운로드
180
+
181
+ 최신 RMVPE 인간 음성 피치 추출 알고리즘을 사용하려면 음피치 추출 모델 매개변수를 다운로드하고 RVC 루트 디렉토리에 배치해야 합니다.
182
+
183
+ - [rmvpe.pt 다운로드](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt)
184
+
185
+ #### dml 환경의 RMVPE 다운로드(선택사항, A카드/I카드 사용자)
186
+
187
+ - [rmvpe.onnx 다운로드](https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx)
188
+
189
+ ### 4. AMD 그래픽 카드 Rocm(선택사항, Linux만 해당)
190
+
191
+ Linux 시스템에서 AMD의 Rocm 기술을 기반으로 RVC를 실행하려면 [여기](https://rocm.docs.amd.com/en/latest/deploy/linux/os-native/install.html)에서 필요한 드라이버를 먼저 설치하세요.
192
+
193
+ Arch Linux를 사용하는 경우 pacman을 사용하여 필요한 드라이버를 설치할 수 있습니다.
194
+
195
+ ```
196
+ pacman -S rocm-hip-sdk rocm-opencl-sdk
197
+ ```
198
+
199
+ 일부 모델의 그래픽 카드(예: RX6700XT)의 경우, 다음과 같은 환경 변수를 추가로 설정해야 할 수 있습니다.
200
+
201
+ ```
202
+ export ROCM_PATH=/opt/rocm
203
+ export HSA_OVERRIDE_GFX_VERSION=10.3.0
204
+ ```
205
+
206
+ 동시에 현재 사용자가 `render` 및 `video` 사용자 그룹에 속해 있는지 확인하세요.
207
+
208
+ ```
209
+ sudo usermod -aG render $USERNAME
210
+ sudo usermod -aG video $USERNAME
211
+ ```
212
+
213
+ ## 시작하기
214
+
215
+ ### 직접 시작
216
+
217
+ 다음 명령어로 WebUI를 시작하세요
218
+
219
+ ```bash
220
+ python infer-web.py
221
+ ```
222
+
223
+ ### 통합 패키지 사용
224
+
225
+ `RVC-beta.7z`를 다운로드하고 압축 해제
226
+
227
+ #### Windows 사용자
228
+
229
+ `go-web.bat` 더블 클릭
230
+
231
+ #### MacOS 사용자
232
+
233
+ ```bash
234
+ sh ./run.sh
235
+ ```
236
+
237
+ ### IPEX 기술이 필요한 I카드 사용자를 위한 지침(Linux만 해당)
238
+
239
+ ```bash
240
+ source /opt/intel/oneapi/setvars.sh
241
+ ```
242
+
243
+ ## 참조 프로젝트
244
+
245
+ - [ContentVec](https://github.com/auspicious3000/contentvec/)
246
+ - [VITS](https://github.com/jaywalnut310/vits)
247
+ - [HIFIGAN](https://github.com/jik876/hifi-gan)
248
+ - [Gradio](https://github.com/gradio-app/gradio)
249
+ - [FFmpeg](https://github.com/FFmpeg/FFmpeg)
250
+ - [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
251
+ - [audio-slicer](https://github.com/openvpi/audio-slicer)
252
+ - [Vocal pitch extraction:RMVPE](https://github.com/Dream-High/RMVPE)
253
+ - 사전 훈련된 모델은 [yxlllc](https://github.com/yxlllc/RMVPE)와 [RVC-Boss](https://github.com/RVC-Boss)에 의해 훈련되고 테스트되었습니다.
254
+
255
+ ## 모든 기여자들의 노력에 감사드립니다
256
+
257
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
258
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
259
+ </a>
docs/kr/faiss_tips_ko.md ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Facebook AI Similarity Search (Faiss) 팁
2
+ ==================
3
+ # Faiss에 대하여
4
+ Faiss 는 Facebook Research가 개발하는, 고밀도 벡터 이웃 검색 라이브러리입니다. 근사 근접 탐색법 (Approximate Neigbor Search)은 약간의 정확성을 희생하여 유사 벡터를 고속으로 찾습니다.
5
+
6
+ ## RVC에 있어서 Faiss
7
+ RVC에서는 HuBERT로 변환한 feature의 embedding을 위해 훈련 데이터에서 생성된 embedding과 유사한 embadding을 검색하고 혼합하여 원래의 음성에 더욱 가까운 변환을 달성합니다. 그러나, 이 탐색법은 단순히 수행하면 시간이 다소 소모되므로, 근사 근접 탐색법을 통해 고속 변환을 가능케 하고 있습니다.
8
+
9
+ # 구현 개요
10
+ 모델이 위치한 `/logs/your-experiment/3_feature256`에는 각 음성 데이터에서 HuBERT가 추출한 feature들이 있습니다. 여기에서 파일 이름별로 정렬된 npy 파일을 읽고, 벡터를 연결하여 big_npy ([N, 256] 모양의 벡터) 를 만듭니다. big_npy를 `/logs/your-experiment/total_fea.npy`로 저장한 후, Faiss로 학습시킵니다.
11
+
12
+ 2023/04/18 기준으로, Faiss의 Index Factory 기능을 이용해, L2 거리에 근거하는 IVF를 이용하고 있습니다. IVF의 분할수(n_ivf)는 N//39로, n_probe는 int(np.power(n_ivf, 0.3))가 사용되고 있습니다. (infer-web.py의 train_index 주위를 찾으십시오.)
13
+
14
+ 이 팁에서는 먼저 이러한 매개 변수의 의미를 설명하고, 개발자가 추후 더 나은 index를 작성할 수 있도록 하는 조언을 작성합니다.
15
+
16
+ # 방법의 설명
17
+ ## Index factory
18
+ index factory는 여러 근사 근접 탐색법을 문자열로 연결하는 pipeline을 문자열로 표기하는 Faiss만의 독자적인 기법입니다. 이를 통해 index factory의 문자열을 변경하는 것만으로 다양한 근사 근접 탐색을 시도해 볼 수 있습니다. RVC에서는 다음과 같이 사용됩니다:
19
+
20
+ ```python
21
+ index = Faiss.index_factory(256, "IVF%s,Flat" % n_ivf)
22
+ ```
23
+ `index_factory`의 인수들 중 첫 번째는 벡터의 차원 수이고, 두번째는 index factory 문자열이며, 세번째에는 사용할 거리를 지정할 수 있습니다.
24
+
25
+ 기법의 보다 자세한 설명은 https://github.com/facebookresearch/Faiss/wiki/The-index-factory 를 확인해 주십시오.
26
+
27
+ ## 거리에 대한 index
28
+ embedding의 유사도로서 사용되는 대표적인 지표로서 이하의 2개가 있습니다.
29
+
30
+ - 유클리드 거리 (METRIC_L2)
31
+ - 내적(内積) (METRIC_INNER_PRODUCT)
32
+
33
+ 유클리드 거리에서는 각 차원에서 제곱의 차를 구하고, 각 차원에서 구한 차를 모두 더한 후 제곱근을 취합니다. 이것은 일상적으로 사용되는 2차원, 3차원에서의 거리의 연산법과 같습니다. 내적은 그 값을 그대로 유사도 지표로 사용하지 않고, L2 정규화를 한 이후 내적을 취하는 코사인 유사도를 사용합니다.
34
+
35
+ 어느 쪽이 더 좋은지는 경우에 따라 다르지만, word2vec에서 얻은 embedding 및 ArcFace를 활용한 이미지 검색 모델은 코사인 유사성이 이용되는 경우가 많습니다. numpy를 사용하여 벡터 X에 대해 L2 정규화를 하고자 하는 경우, 0 division을 피하기 위해 충분히 작은 값을 eps로 한 뒤 이하에 코드를 활용하면 됩니다.
36
+
37
+ ```python
38
+ X_normed = X / np.maximum(eps, np.linalg.norm(X, ord=2, axis=-1, keepdims=True))
39
+ ```
40
+
41
+ 또한, `index factory`의 3번째 인수에 건네주는 값을 선택하는 것을 통해 계산에 사용하는 거리 index를 변경할 수 있습니다.
42
+
43
+ ```python
44
+ index = Faiss.index_factory(dimention, text, Faiss.METRIC_INNER_PRODUCT)
45
+ ```
46
+
47
+ ## IVF
48
+ IVF (Inverted file indexes)는 역색인 탐색법과 유사한 알고리즘입니다. 학습시에는 검색 대상에 대해 k-평균 군집법을 실시하고 클러스터 중심을 이용해 보로노이 분할을 실시합니다. 각 데이터 포인트에는 클러스터가 할당되므로, 클러스터에서 데이터 포인트를 조회하는 dictionary를 만듭니다.
49
+
50
+ 예를 들어, 클러스터가 다음과 같이 할당된 경우
51
+ |index|Cluster|
52
+ |-----|-------|
53
+ |1|A|
54
+ |2|B|
55
+ |3|A|
56
+ |4|C|
57
+ |5|B|
58
+
59
+ IVF 이후의 결과는 다음과 같습니다:
60
+
61
+ |cluster|index|
62
+ |-------|-----|
63
+ |A|1, 3|
64
+ |B|2, 5|
65
+ |C|4|
66
+
67
+ 탐색 시, 우선 클러스터에서 `n_probe`개의 클러스터를 탐색한 다음, 각 클러스터에 속한 데이터 포인트의 거리를 계산합니다.
68
+
69
+ # 권장 매개변수
70
+ index의 선택 방법에 대해서는 공식적으로 가이드 라인이 있으므로, 거기에 준해 설명합니다.
71
+ https://github.com/facebookresearch/Faiss/wiki/Guidelines-to-choose-an-index
72
+
73
+ 1M 이하의 데이터 세트에 있어서는 4bit-PQ가 2023년 4월 시점에서는 Faiss로 이용할 수 있는 가장 효율적인 수법입니다. 이것을 IVF와 조합해, 4bit-PQ로 후보를 추려내고, 마지막으로 이하의 index factory를 이용하여 정확한 지표로 거리��� 재계산하면 됩니다.
74
+
75
+ ```python
76
+ index = Faiss.index_factory(256, "IVF1024,PQ128x4fs,RFlat")
77
+ ```
78
+
79
+ ## IVF 권장 매개변수
80
+ IVF의 수가 너무 많으면, 가령 데이터 수의 수만큼 IVF로 양자화(Quantization)를 수행하면, 이것은 완전탐색과 같아져 효율이 나빠지게 됩니다. 1M 이하의 경우 IVF 값은 데이터 포인트 수 N에 대해 4sqrt(N) ~ 16sqrt(N)를 사용하는 것을 권장합니다.
81
+
82
+ n_probe는 n_probe의 수에 비례하여 계산 시간이 늘어나므로 정확도와 시간을 적절히 균형을 맞추어 주십시오. 개인적으로 RVC에 있어서 그렇게까지 정확도는 필요 없다고 생각하기 때문에 n_probe = 1이면 된다고 생각합니다.
83
+
84
+ ## FastScan
85
+ FastScan은 직적 양자화를 레지스터에서 수행함으로써 거리의 고속 근사를 가능하게 하는 방법입니다.직적 양자화는 학습시에 d차원마다(보통 d=2)에 독립적으로 클러스터링을 실시해, 클러스터끼리의 거리를 사전 계산해 lookup table를 작성합니다. 예측시는 lookup table을 보면 각 차원의 거리를 O(1)로 계산할 수 있습니다. 따라서 PQ 다음에 지정하는 숫자는 일반적으로 벡터의 절반 차원을 지정합니다.
86
+
87
+ FastScan에 대한 자세한 설명은 공식 문서를 참조하십시오.
88
+ https://github.com/facebookresearch/Faiss/wiki/Fast-accumulation-of-PQ-and-AQ-codes-(FastScan)
89
+
90
+ ## RFlat
91
+ RFlat은 FastScan이 계산한 대략적인 거리를 index factory의 3번째 인수로 지정한 정확한 거리로 다시 계산하라는 인스트럭션입니다. k개의 근접 변수를 가져올 때 k*k_factor개의 점에 대해 재계산이 이루어집니다.
92
+
93
+ # Embedding 테크닉
94
+ ## Alpha 쿼리 확장
95
+ 퀴리 확장이란 탐색에서 사용되는 기술로, 예를 들어 전문 탐색 시, 입력된 검색문에 단어를 몇 개를 추가함으로써 검색 정확도를 올리는 방법입니다. 백터 탐색을 위해서도 몇가지 방법이 제안되었는데, 그 중 α-쿼리 확장은 추가 학습이 필요 없는 매우 효과적인 방법으로 알려져 있습니다. [Attention-Based Query Expansion Learning](https://arxiv.org/abs/2007.08019)와 [2nd place solution of kaggle shopee competition](https://www.kaggle.com/code/lyakaap/2nd-place-solution/notebook) 논문에서 소개된 바 있습니다..
96
+
97
+ α-쿼리 확장은 한 벡터에 인접한 벡터를 유사도의 α곱한 가중치로 더해주면 됩니다. 코드로 예시를 들어 보겠습니다. big_npy를 α query expansion로 대체합니다.
98
+
99
+ ```python
100
+ alpha = 3.
101
+ index = Faiss.index_factory(256, "IVF512,PQ128x4fs,RFlat")
102
+ original_norm = np.maximum(np.linalg.norm(big_npy, ord=2, axis=1, keepdims=True), 1e-9)
103
+ big_npy /= original_norm
104
+ index.train(big_npy)
105
+ index.add(big_npy)
106
+ dist, neighbor = index.search(big_npy, num_expand)
107
+
108
+ expand_arrays = []
109
+ ixs = np.arange(big_npy.shape[0])
110
+ for i in range(-(-big_npy.shape[0]//batch_size)):
111
+ ix = ixs[i*batch_size:(i+1)*batch_size]
112
+ weight = np.power(np.einsum("nd,nmd->nm", big_npy[ix], big_npy[neighbor[ix]]), alpha)
113
+ expand_arrays.append(np.sum(big_npy[neighbor[ix]] * np.expand_dims(weight, axis=2),axis=1))
114
+ big_npy = np.concatenate(expand_arrays, axis=0)
115
+
116
+ # index version 정규화
117
+ big_npy = big_npy / np.maximum(np.linalg.norm(big_npy, ord=2, axis=1, keepdims=True), 1e-9)
118
+ ```
119
+
120
+ 위 테크닉은 탐색을 수행하는 쿼리에도, 탐색 대상 DB에도 적응 가능한 테크닉입니다.
121
+
122
+ ## MiniBatch KMeans에 의한 embedding 압축
123
+
124
+ total_fea.npy가 너무 클 경우 K-means를 이용하여 벡터를 작게 만드는 것이 가능합니다. 이하 코드로 embedding의 압축이 가능합니다. n_clusters에 압축하고자 하는 크기를 지정하고 batch_size에 256 * CPU의 코어 수를 지정함으로써 CPU 병렬화의 혜택을 충분히 얻을 수 있습니다.
125
+
126
+ ```python
127
+ import multiprocessing
128
+ from sklearn.cluster import MiniBatchKMeans
129
+ kmeans = MiniBatchKMeans(n_clusters=10000, batch_size=256 * multiprocessing.cpu_count(), init="random")
130
+ kmeans.fit(big_npy)
131
+ sample_npy = kmeans.cluster_centers_
132
+ ```
docs/kr/faq_ko.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Q1:ffmpeg 오류/utf8 오류
2
+
3
+ 대부분의 경우 ffmpeg 문제가 아니라 오디오 경로 문제입니다. <br>
4
+ ffmpeg가 공백, () 등의 특수 문자가 포함된 경로를 읽을 때 ffmpeg 오류가 발생할 수 있습니다. 트레이닝 세트 오디오가 중문 경로일 때 filelist.txt에 쓸 때 utf8 오류가 발생할 수 있습니다. <br>
5
+
6
+ ## Q2:일괄 트레이닝이 끝나고 인덱스가 없음
7
+
8
+ "Training is done. The program is closed."라고 표시되면 모델 트레이닝이 성공한 것이며, 이어지는 오류는 가짜입니다. <br>
9
+
10
+ 일괄 트레이닝이 끝나고 'added'로 시작하는 인덱스 파일이 없으면 트레이닝 세트가 너무 커서 인덱스 추가 단계에서 멈췄을 수 있습니다. 메모리에 대한 인덱스 추가 요구 사항이 너무 큰 문제를 배치 처리 add 인덱스로 해결했습니다. 임시로 "트레이닝 인덱스" 버튼을 다시 클릭해 보세요. <br>
11
+
12
+ ## Q3:트레이닝이 끝나고 트레이닝 세트의 음색을 추론에서 보지 못함
13
+
14
+ '음색 새로고침'을 클릭해 보세요. 여전히 없다면 트레이닝에 오류가 있는지, 콘솔 및 webui의 스크린샷, logs/실험명 아래의 로그를 개발자에게 보내 확인해 보세요. <br>
15
+
16
+ ## Q4:모델 공유 방법
17
+
18
+ rvc_root/logs/실험명 아래에 저장된 pth는 추론에 사용하기 위한 것이 아니라 실험 상태를 저장하고 복원하며, 트레이닝을 계속하기 위한 것입니다. 공유에 사용되는 모델은 weights 폴더 아래 60MB 이상인 pth 파일입니다. <br>
19
+ <br/>
20
+ 향후에는 weights/exp_name.pth와 logs/exp_name/added_xxx.index를 결합하여 weights/exp_name.zip으로 만들어 index 입력 단계를 생략할 예정입니다. 그러면 zip 파일을 공유하고 pth 파일은 공유하지 마세요. 단지 다른 기계에서 트레이닝을 계속하려는 경우에만 공유하세요. <br>
21
+ <br/>
22
+ logs 폴더 아래 수백 MB의 pth 파일을 weights 폴더에 복사/공유하여 강제로 추론에 사용하면 f0, tgt_sr 등의 키가 없다는 오류가 발생할 수 있습니다. ckpt 탭 아래에서 수동 또는 자동(로컬 logs에서 관련 정보를 찾을 수 있는 경우 자동)으로 음성, 대상 오디오 샘플링률 옵션을 선택한 후 ckpt 소형 모델을 추출해야 합니다(입력 경로에 G로 시작하는 경로를 입력). 추출 후 weights 폴더에 60MB 이상의 pth 파일이 생성되며, 음색 새로고침 후 사용할 수 있습니다. <br>
23
+
24
+ ## Q5:연결 오류
25
+
26
+ 아마도 컨트롤 콘솔(검은 창)을 닫았을 것입니다. <br>
27
+
28
+ ## Q6:WebUI에서 "Expecting value: line 1 column 1 (char 0)" 오류가 발생함
29
+
30
+ 시스템 로컬 네트워크 프록시/글로벌 프록시를 닫으세요. <br>
31
+
32
+ 이는 클라이언트의 프록시뿐만 아니라 서버 측의 프록시도 포함합니다(예: autodl로 http_proxy 및 https_proxy를 설정한 경우 사용 시 unset으로 끄세요). <br>
33
+
34
+ ## Q7:WebUI 없이 명령으로 트레이닝 및 추론하는 방법
35
+
36
+ 트레이닝 스크립트: <br>
37
+ 먼저 WebUI를 실행하여 데이터 세트 처리 및 트레이닝에 사용되는 명령줄을 메시지 창에서 확인할 수 있습니다. <br>
38
+
39
+ 추론 스크립트: <br>
40
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py <br>
41
+
42
+ 예제: <br>
43
+
44
+ runtime\python.exe myinfer.py 0 "E:\codes\py39\RVC-beta\todo-songs\1111.wav" "E:\codes\py39\logs\mi-test\added_IVF677_Flat_nprobe_7.index" harvest "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True <br>
45
+
46
+ f0up_key=sys.argv[1] <br>
47
+ input_path=sys.argv[2] <br>
48
+ index_path=sys.argv[3] <br>
49
+ f0method=sys.argv[4]#harvest 또는 pm <br>
50
+ opt_path=sys.argv[5] <br>
51
+ model_path=sys.argv[6] <br>
52
+ index_rate=float(sys.argv[7]) <br>
53
+ device=sys.argv[8] <br>
54
+ is_half=bool(sys.argv[9]) <br>
55
+
56
+ ## Q8:Cuda 오류/Cuda 메모리 부족
57
+
58
+ 아마도 cuda 설정 문제이거나 장치가 지원되지 않을 수 있습니다. 대부분의 경우 메모리가 부족합니다(out of memory). <br>
59
+
60
+ 트레이닝의 경우 batch size를 줄이세요(1로 줄여도 부족하다면 다른 그래픽 카드로 트레이닝을 해야 합니다). 추론의 경우 config.py 파일 끝에 있는 x_pad, x_query, x_center, x_max를 적절히 줄이세요. 4GB 미만의 메모리(예: 1060(3GB) 및 여러 2GB 그래픽 카드)를 가진 경우는 포기하세요. 4GB 메모리 그래픽 카드는 아직 구할 수 있습니다. <br>
61
+
62
+ ## Q9:total_epoch를 몇으로 설정하는 것이 좋을까요
63
+
64
+ 트레이닝 세트의 오디오 품질이 낮고 배경 소음이 많으면 20~30이면 충분합니다. 너무 높게 설정하면 바닥 모델의 오디오 품질이 낮은 트레이닝 세트를 높일 수 없습니다. <br>
65
+ 트레이닝 세트의 오디오 품질이 높고 배경 소음이 적고 길이가 길 경우 높게 설정할 수 있습니다. 200도 괜찮습니다(트레이닝 속도가 빠르므로, 고품질 트레이닝 세트를 준비할 수 있는 조건이 있다면, 그래픽 카드도 좋을 것이므로, 조금 더 긴 트레이닝 시간에 대해 걱정하지 않을 것입니다). <br>
66
+
67
+ ## Q10: 트레이닝 세트는 얼마나 길어야 하나요
68
+
69
+ 10분에서 50분을 추천합니다.
70
+ <br/>
71
+ 음질이 좋고 백그라운드 노이즈가 낮은 상태에서, 개인적인 특색 있는 음색이라면 더 많으면 더 좋습니다.
72
+ <br/>
73
+ 고품질의 트레이닝 세트(정교하게 준비된 + 특색 있는 음색)라면, 5분에서 10분도 괜찮습니다. 저장소의 저자도 종종 이렇게 합니다.
74
+ <br/>
75
+ 1분에서 2분의 데이터로 트레이닝에 성공한 사람도 있지만, 그러한 성공 사례는 다른 사람이 재현하기 어려우며 참고 가치가 크지 않습니다. 이는 트레이닝 세트의 음색이 매우 뚜렷해야 하며(예: 높은 주파수의 명확한 목소리나 소녀음) 음질이 좋아야 합니다.
76
+ <br/>
77
+ 1분 미만의 데이터로 트레이닝을 시도(성공)한 사례는 아직 보지 못했습니다. 이런 시도는 권장하지 않습니다.
78
+
79
+ ## Q11: index rate는 무엇이며, 어떻게 조정하나요? (과학적 설명)
80
+
81
+ 만약 베이스 모델과 추론 소스의 음질이 트레이닝 세트보다 높다면, 그들은 추론 결과의 음질을 높일 수 있지만, 음색이 베이스 모델/추론 소스의 음색으로 기울어질 수 있습니다. 이 현상을 "음색 유출"이라고 합니다.
82
+ <br/>
83
+ index rate는 음색 유출 문제를 줄이거나 해결하는 데 사용됩니다. 1로 조정하면 이론적으로 추론 소스의 음색 유출 문제가 없지만, 음질은 트레이닝 세트에 더 가깝게 됩니다. 만약 트레이닝 세트의 음질이 추론 소스보다 낮다면, index rate를 높이면 음질이 낮아질 수 있습니다. 0으로 조정하면 검색 혼합을 이용하여 트레이닝 세트의 음색을 보호하는 효과가 없습니다.
84
+ <br/>
85
+ 트레이닝 세트가 고품질이고 길이가 길 경우, total_epoch를 높일 수 있으며, 이 경우 모델 자체가 추론 소스와 베이스 모델의 음색을 거의 참조하지 않아 "음색 유출" 문제가 거의 발생하지 않습니다. 이때 index rate는 중요하지 않으며, 심지어 index 색인 파일을 생성하거나 공유하지 않아도 됩니다.
86
+
87
+ ## Q11: 추론시 GPU를 어떻게 선택하나요?
88
+
89
+ config.py 파일에서 device cuda: 다음에 카드 번호를 선택합니다.
90
+ 카드 번호와 그래픽 카드의 매핑 관계는 트레이닝 탭의 그래픽 카드 정보란에서 볼 수 있습니다.
91
+
92
+ ## Q12: 트레이닝 중간에 저장된 pth를 어떻게 추론하나요?
93
+
94
+ ckpt 탭 하단에서 소형 모델을 추출합니다.
95
+
96
+ ## Q13: 트레이닝을 어떻게 중단하고 계속할 수 있나요?
97
+
98
+ 현재 단계에서는 WebUI 콘솔을 닫고 go-web.bat을 더블 클릭하여 프로그램을 다시 시작해야 합니다. 웹 페이지 매개변수도 새로 고쳐서 다시 입력해야 합니다.
99
+ 트레이닝을 계속하려면: 같은 웹 페이지 매개변수로 트레이닝 모델을 클릭하면 이전 체크포인트에서 트레이닝을 계속합니다.
100
+
101
+ ## Q14: 트레이닝 중 파일 페이지/메모리 오류가 발생하면 어떻게 해야 하나요?
102
+
103
+ 프로세스가 너무 많이 열려 메모리가 폭발했습니다. 다음과 같은 방법으로 해결할 수 있습니다.
104
+
105
+ 1. "음높이 추출 및 데이터 처리에 사용되는 CPU 프로세스 수"를 적당히 낮춥니다.
106
+ 2. 트레이닝 세트 오디오를 수동으로 잘라 너무 길지 않게 합니다.
107
+
108
+ ## Q15: 트레이닝 도중 데이터를 어떻게 추가하나요?
109
+
110
+ 1. 모든 데이터에 새로운 실험 이름을 만듭니다.
111
+ 2. 이전에 가장 최신의 G와 D 파일(또는 어떤 중간 ckpt를 기반으로 트레이닝하고 싶다면 중간 것을 복사할 수도 있음)을 새 실험 이름으로 복사합니다.
112
+ 3. 새 실험 이름으로 원클릭 트레이닝을 시작하면 이전의 최신 진행 상황에서 계속 트레이닝합니다.
113
+
114
+ ## Q16: llvmlite.dll에 관한 오류
115
+
116
+ ```bash
117
+ OSError: Could not load shared object file: llvmlite.dll
118
+
119
+ FileNotFoundError: Could not find module lib\site-packages\llvmlite\binding\llvmlite.dll (or one of its dependencies). Try using the full path with constructor syntax.
120
+ ```
121
+
122
+ Windows 플랫폼에서 이 오류가 발생하면 https://aka.ms/vs/17/release/vc_redist.x64.exe를 설치하고 WebUI를 다시 시작하면 해결됩니다.
123
+
124
+ ## Q17: RuntimeError: 텐서의 확장된 크기(17280)는 비 단일 항목 차원 1에서 기존 크기(0)와 일치해야 합니다. 대상 크기: [1, 17280]. 텐서 크기: [0]
125
+
126
+ wavs16k 폴더 아래에서 다른 파일들보다 크기가 현저히 작은 일부 오디오 파일을 찾아 삭제하고, 트레이닝 모델을 클릭하면 오류가 발생하지 않습니다. 하지만 원클릭 프로세스가 중단되었기 때문에 모델 트레이닝이 완료된 후에는 인덱스 트레이닝을 클릭해야 합니다.
127
+
128
+ ## Q18: RuntimeError: 텐�� a의 크기(24)가 비 단일 항목 차원 2에서 텐서 b(16)의 크기와 일치해야 합니다.
129
+
130
+ 트레이닝 도중에 샘플링 레이트를 변경해서는 안 됩니다. 변경해야 한다면 실험 이름을 변경하고 처음부터 트레이닝해야 합니다. 물론, 이전에 추출한 음높이와 특징(0/1/2/2b 폴더)을 복사하여 트레이닝 프로세스를 가속화할 수도 있습니다.
docs/kr/training_tips_ko.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ RVC 훈련에 대한 설명과 팁들
2
+ ======================================
3
+ 본 팁에서는 어떻게 데이터 훈련이 이루어지고 있는지 설명합니다.
4
+
5
+ # 훈련의 흐름
6
+ GUI의 훈련 탭의 단계를 따라 설명합니다.
7
+
8
+ ## step1
9
+ 실험 이름을 지정합니다. 또한, 모델이 피치(소리의 높낮이)를 고려해야 하는지 여부를 여기에서 설정할 수도 있습니다..
10
+ 각 실험을 위한 데이터는 `/logs/experiment name/`에 배치됩니다..
11
+
12
+ ## step2a
13
+ 음성 파일을 불러오고 전처리합니다.
14
+
15
+ ### 음성 파일 불러오기
16
+ 음성 파일이 있는 폴더를 지정하면 해당 폴더에 있는 음성 파일이 자동으로 가져와집니다.
17
+ 예를 들어 `C:Users\hoge\voices`를 지정하면 `C:Users\hoge\voices\voice.mp3`가 읽히지만 `C:Users\hoge\voices\dir\voice.mp3`는 읽히지 않습니다.
18
+
19
+ 음성 로드에는 내부적으로 ffmpeg를 이용하고 있으므로, ffmpeg로 대응하고 있는 확장자라면 자동적으로 읽힙니다.
20
+ ffmpeg에서 int16으로 변환한 후 float32로 변환하고 -1과 1 사이에 정규화됩니다.
21
+
22
+ ### 잡음 제거
23
+ 음성 파일에 대해 scipy의 filtfilt를 이용하여 잡음을 처리합니다.
24
+
25
+ ### 음성 분할
26
+ 입력한 음성 파일은 먼저 일정 기간(max_sil_kept=5초?)보다 길게 무음이 지속되는 부분을 감지하여 음성을 분할합니다.무음으로 음성을 분할한 후에는 0.3초의 overlap을 포함하여 4초마다 음성을 분할합니다.4초 이내에 구분된 음성은 음량의 정규화를 실시한 후 wav 파일을 `/logs/실험명/0_gt_wavs`로, 거기에서 16k의 샘플링 레이트로 변환해 `/logs/실험명/1_16k_wavs`에 wav 파일로 저장합니다.
27
+
28
+ ## step2b
29
+ ### 피치 추출
30
+ wav 파일에서 피치(소리의 높낮이) 정보를 추출합니다. parselmouth나 pyworld에 내장되어 있는 메서드으로 피치 정보(=f0)를 추출해, `/logs/실험명/2a_f0`에 저장합니다. 그 후 피치 정보를 로그로 변환하여 1~255 정수로 변환하고 `/logs/실험명/2b-f0nsf`에 저장합니다.
31
+
32
+ ### feature_print 추출
33
+ HuBERT를 이용하여 wav 파일을 미리 embedding으로 변환합니다. `/logs/실험명/1_16k_wavs`에 저장한 wav 파일을 읽고 HuBERT에서 wav 파일을 256차원 feature들로 변환한 후 npy 형식으로 `/logs/실험명/3_feature256`에 저장합니다.
34
+
35
+ ## step3
36
+ 모델의 훈련을 진행합니다.
37
+
38
+ ### 초보자용 용어 해설
39
+ 심층학습(딥러닝)에서는 데이터셋을 분할하여 조금씩 학습을 진행합니다.한 번의 모델 업데이트(step) 단계 당 batch_size개의 데이터를 탐색하여 예측과 오차를 수정합니다. 데이터셋 전부에 대해 이 작업을 한 번 수행하는 이를 하나의 epoch라고 계산합니다.
40
+
41
+ 따라서 학습 시간은 단계당 학습 시간 x (데이터셋 내 데이터의 수 / batch size) x epoch 수가 소요됩니다. 일반적으로 batch size가 클수록 학습이 안정적이게 됩니다. (step당 학습 시간 ÷ batch size)는 작아지지만 GPU 메모리를 더 많이 사용합니다. GPU RAM은 nvidia-smi 명령어를 통해 확인할 수 있습니다. 실행 환경에 따라 배치 크기를 최대한 늘리면 짧은 시간 내에 학습이 가능합니다.
42
+
43
+ ### 사전 학습된 모델 지정
44
+ RVC는 적은 데이터셋으로도 훈련이 가능하도록 사전 훈련된 가중치에서 모델 훈련을 시작합니다. 기본적으로 `rvc-location/pretrained/f0G40k.pth` 및 `rvc-location/pretrained/f0D40k.pth`를 불러옵니다. 학습을 할 시에, 모델 파라미터는 각 save_every_epoch별로 `logs/experiment name/G_{}.pth` 와 `logs/experiment name/D_{}.pth`로 저장이 되는데, 이 경로를 지정함으로써 학습을 재개하거나, 다른 실험에서 학습한 모델의 가중치에서 학습을 시작할 수 있습니다.
45
+
46
+ ### index의 학습
47
+ RVC에서는 학습시에 사용된 HuBERT의 feature값을 저장하고, 추론 시에는 학습 시 사용한 feature값과 유사한 feature 값을 탐색해 추론을 진행합니다. 이 탐색을 고속으로 수행하기 위해 사전에 index을 학습하게 됩니다.
48
+ Index 학습에는 근사 근접 탐색법 라이브러리인 Faiss를 사용하게 됩니다. `/logs/실험명/3_feature256`의 feature값을 불러와, 이를 모두 결합시킨 feature값을 `/logs/실험명/total_fea.npy`로서 저장, 그것을 사용해 학습한 index를`/logs/실험명/add_XXX.index`로 저장합니다.
49
+
50
+ ### 버튼 설명
51
+ - モデルのトレーニング (모델 학습): step2b까지 실행한 후, 이 버튼을 눌러 모델을 학습합니다.
52
+ - 特徴インデックスのトレーニング (특징 지수 훈련): 모델의 훈련 후, index를 학습합니다.
53
+ - ワンクリックトレーニング (원클릭 트레이닝): step2b까지의 모델 훈련, feature index 훈련을 일괄로 실시합니다.
docs/pt/Changelog_pt.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### 2023-10-06
2
+ - Criamos uma GUI para alteração de voz em tempo real: go-realtime-gui.bat/gui_v1.py (observe que você deve escolher o mesmo tipo de dispositivo de entrada e saída, por exemplo, MME e MME).
3
+ - Treinamos um modelo RMVPE de extração de pitch melhor.
4
+ - Otimizar o layout da GUI de inferência.
5
+
6
+ ### 2023-08-13
7
+ 1-Correção de bug regular
8
+ - Alterar o número total mínimo de épocas para 1 e alterar o número total mínimo de epoch para 2
9
+ - Correção de erros de treinamento por não usar modelos de pré-treinamento
10
+ - Após a separação dos vocais de acompanhamento, limpe a memória dos gráficos
11
+ - Alterar o caminho absoluto do faiss save para o caminho relativo
12
+ - Suporte a caminhos com espaços (tanto o caminho do conjunto de treinamento quanto o nome do experimento são suportados, e os erros não serão mais relatados)
13
+ - A lista de arquivos cancela a codificação utf8 obrigatória
14
+ - Resolver o problema de consumo de CPU causado pela busca do faiss durante alterações de voz em tempo real
15
+
16
+ Atualizações do 2-Key
17
+ - Treine o modelo de extração de pitch vocal de código aberto mais forte do momento, o RMVPE, e use-o para treinamento de RVC, inferência off-line/em tempo real, com suporte a PyTorch/Onnx/DirectML
18
+ - Suporte para placas gráficas AMD e Intel por meio do Pytorch_DML
19
+
20
+ (1) Mudança de voz em tempo real (2) Inferência (3) Separação do acompanhamento vocal (4) Não há suporte para treinamento no momento, mudaremos para treinamento de CPU; há suporte para inferência RMVPE de gpu por Onnx_Dml
21
+
22
+
23
+ ### 2023-06-18
24
+ - Novos modelos v2 pré-treinados: 32k e 48k
25
+ - Correção de erros de inferência de modelo não-f0
26
+ - Para conjuntos de treinamento que excedam 1 hora, faça minibatch-kmeans automáticos para reduzir a forma dos recursos, de modo que o treinamento, a adição e a pesquisa do Index sejam muito mais rápidos.
27
+ - Fornecer um espaço de brinquedo vocal2guitar huggingface
28
+ - Exclusão automática de áudios de conjunto de treinamento de atalhos discrepantes
29
+ - Guia de exportação Onnx
30
+
31
+ Experimentos com falha:
32
+ - ~~Recuperação de recurso: adicionar recuperação de recurso temporal: não eficaz~~
33
+ - ~~Recuperação de recursos: adicionar redução de dimensionalidade PCAR: a busca é ainda mais lenta~~
34
+ - ~~Aumento de dados aleatórios durante o treinamento: não é eficaz~~
35
+
36
+ Lista de tarefas:
37
+ - ~~Vocos-RVC (vocoder minúsculo): não é eficaz~~
38
+ - ~~Suporte de crepe para treinamento: substituído pelo RMVPE~~
39
+ - ~~Inferência de crepe de meia precisão:substituída pelo RMVPE. E difícil de conseguir.~~
40
+ - Suporte ao editor de F0
41
+
42
+ ### 2023-05-28
43
+ - Adicionar notebook jupyter v2, changelog em coreano, corrigir alguns requisitos de ambiente
44
+ - Adicionar consoante sem voz e modo de proteção de respiração
45
+ - Suporte à detecção de pitch crepe-full
46
+ - Separação vocal UVR5: suporte a modelos dereverb e modelos de-echo
47
+ - Adicionar nome e versão do experimento no nome do Index
48
+ - Suporte aos usuários para selecionar manualmente o formato de exportação dos áudios de saída durante o processamento de conversão de voz em lote e a separação vocal UVR5
49
+ - Não há mais suporte para o treinamento do modelo v1 32k
50
+
51
+ ### 2023-05-13
52
+ - Limpar os códigos redundantes na versão antiga do tempo de execução no pacote de um clique: lib.infer_pack e uvr5_pack
53
+ - Correção do bug de pseudo multiprocessamento no pré-processamento do conjunto de treinamento
54
+ - Adição do ajuste do raio de filtragem mediana para o algoritmo de reconhecimento de inclinação da extração
55
+ - Suporte à reamostragem de pós-processamento para exportação de áudio
56
+ - A configuração "n_cpu" de multiprocessamento para treinamento foi alterada de "extração de f0" para "pré-processamento de dados e extração de f0"
57
+ - Detectar automaticamente os caminhos de Index na pasta de registros e fornecer uma função de lista suspensa
58
+ - Adicionar "Perguntas e respostas frequentes" na página da guia (você também pode consultar o wiki do RVC no github)
59
+ - Durante a inferência, o pitch da colheita é armazenado em cache quando se usa o mesmo caminho de áudio de entrada (finalidade: usando a extração do pitch da colheita, todo o pipeline passará por um processo longo e repetitivo de extração do pitch. Se o armazenamento em cache não for usado, os usuários que experimentarem diferentes configurações de raio de filtragem de timbre, Index e mediana de pitch terão um processo de espera muito doloroso após a primeira inferência)
60
+
61
+ ### 2023-05-14
62
+ - Use o envelope de volume da entrada para misturar ou substituir o envelope de volume da saída (pode aliviar o problema de "muting de entrada e ruído de pequena amplitude de saída"). Se o ruído de fundo do áudio de entrada for alto, não é recomendável ativá-lo, e ele não é ativado por padrão (1 pode ser considerado como não ativado)
63
+ - Suporte ao salvamento de modelos pequenos extraídos em uma frequência especificada (se você quiser ver o desempenho em épocas diferentes, mas não quiser salvar todos os pontos de verificação grandes e extrair manualmente modelos pequenos pelo processamento ckpt todas as vezes, esse recurso será muito prático)
64
+ - Resolver o problema de "erros de conexão" causados pelo proxy global do servidor, definindo variáveis de ambiente
65
+ - Oferece suporte a modelos v2 pré-treinados (atualmente, apenas as versões 40k estão disponíveis publicamente para teste e as outras duas taxas de amostragem ainda não foram totalmente treinadas)
66
+ - Limita o volume excessivo que excede 1 antes da inferência
67
+ - Ajustou ligeiramente as configurações do pré-processamento do conjunto de treinamento
68
+
69
+
70
+ #######################
71
+
72
+ Histórico de registros de alterações:
73
+
74
+ ### 2023-04-09
75
+ - Parâmetros de treinamento corrigidos para melhorar a taxa de utilização da GPU: A100 aumentou de 25% para cerca de 90%, V100: 50% para cerca de 90%, 2060S: 60% para cerca de 85%, P40: 25% para cerca de 95%; melhorou significativamente a velocidade de treinamento
76
+ - Parâmetro alterado: total batch_size agora é por GPU batch_size
77
+ - Total_epoch alterado: limite máximo aumentado de 100 para 1000; padrão aumentado de 10 para 20
78
+ - Corrigido o problema da extração de ckpt que reconhecia o pitch incorretamente, causando inferência anormal
79
+ - Corrigido o problema do treinamento distribuído que salvava o ckpt para cada classificação
80
+ - Aplicada a filtragem de recursos nan para extração de recursos
81
+ - Corrigido o problema com a entrada/saída silenciosa que produzia consoantes aleatórias ou ruído (os modelos antigos precisavam ser treinados novamente com um novo conjunto de dados)
82
+
83
+ ### Atualização 2023-04-16
84
+ - Adicionada uma mini-GUI de alteração de voz local em tempo real, iniciada com um clique duplo em go-realtime-gui.bat
85
+ - Filtragem aplicada para bandas de frequência abaixo de 50 Hz durante o treinamento e a inferência
86
+ - Diminuição da extração mínima de tom do pyworld do padrão 80 para 50 para treinamento e inferência, permitindo que vozes masculinas de tom baixo entre 50-80 Hz não sejam silenciadas
87
+ - A WebUI suporta a alteração de idiomas de acordo com a localidade do sistema (atualmente suporta en_US, ja_JP, zh_CN, zh_HK, zh_SG, zh_TW; o padrão é en_US se não for suportado)
88
+ - Correção do reconhecimento de algumas GPUs (por exemplo, falha no reconhecimento da V100-16G, falha no reconhecimento da P4)
89
+
90
+ ### Atualização de 2023-04-28
91
+ - Atualizadas as configurações do Index faiss para maior velocidade e qualidade
92
+ - Removida a dependência do total_npy; o futuro compartilhamento de modelos não exigirá a entrada do total_npy
93
+ - Restrições desbloqueadas para as GPUs da série 16, fornecendo configurações de inferência de 4 GB para GPUs com VRAM de 4 GB
94
+ - Corrigido o erro na separação do acompanhamento vocal do UVR5 para determinados formatos de áudio
95
+ - A mini-GUI de alteração de voz em tempo real agora suporta modelos de pitch não 40k e que não são lentos
96
+
97
+ ### Planos futuros:
98
+ Recursos:
99
+ - Opção de adição: extrair modelos pequenos para cada epoch salvo
100
+ - Adicionar opção: exportar mp3 adicional para o caminho especificado durante a inferência
101
+ - Suporte à guia de treinamento para várias pessoas (até 4 pessoas)
102
+
103
+ Modelo básico:
104
+ - Coletar arquivos wav de respiração para adicionar ao conjunto de dados de treinamento para corrigir o problema de sons de respiração distorcidos
105
+ - No momento, estamos treinando um modelo básico com um conjunto de dados de canto estendido, que será lançado no futuro
docs/pt/README.pt.md ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ <h1>Retrieval-based-Voice-Conversion-WebUI</h1>
4
+ Uma estrutura de conversão de voz fácil de usar baseada em VITS.<br><br>
5
+
6
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange
7
+ )](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
8
+
9
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
10
+
11
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
12
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
13
+ [![Licence](https://img.shields.io/github/license/RVC-Project/Retrieval-based-Voice-Conversion-WebUI?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
14
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
15
+
16
+ [![Discord](https://img.shields.io/badge/RVC%20Developers-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
17
+
18
+ </div>
19
+
20
+ ------
21
+ [**Changelog**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/Changelog_EN.md) | [**FAQ (Frequently Asked Questions)**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/FAQ-(Frequently-Asked-Questions))
22
+
23
+ [**English**](../en/README.en.md) | [**中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Türkçe**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
24
+
25
+
26
+ Confira nosso [Vídeo de demonstração](https://www.bilibili.com/video/BV1pm4y1z7Gm/) aqui!
27
+
28
+ Treinamento/Inferência WebUI:go-web.bat
29
+ ![Traduzido](https://github.com/RafaelGodoyEbert/Retrieval-based-Voice-Conversion-WebUI/assets/78083427/0b894d87-565a-432c-8b5b-45e4a65d5d17)
30
+
31
+ GUI de conversão de voz em tempo real:go-realtime-gui.bat
32
+ ![image](https://github.com/RafaelGodoyEbert/Retrieval-based-Voice-Conversion-WebUI/assets/78083427/d172e3e5-35f4-4876-9530-c28246919e9e)
33
+
34
+
35
+ > O dataset para o modelo de pré-treinamento usa quase 50 horas de conjunto de dados de código aberto VCTK de alta qualidade.
36
+
37
+ > Dataset de músicas licenciadas de alta qualidade serão adicionados ao conjunto de treinamento, um após o outro, para seu uso, sem se preocupar com violação de direitos autorais.
38
+
39
+ > Aguarde o modelo básico pré-treinado do RVCv3, que possui parâmetros maiores, mais dados de treinamento, melhores resultados, velocidade de inferência inalterada e requer menos dados de treinamento para treinamento.
40
+
41
+ ## Resumo
42
+ Este repositório possui os seguintes recursos:
43
+ + Reduza o vazamento de tom substituindo o recurso de origem pelo recurso de conjunto de treinamento usando a recuperação top1;
44
+ + Treinamento fácil e rápido, mesmo em placas gráficas relativamente ruins;
45
+ + Treinar com uma pequena quantidade de dados também obtém resultados relativamente bons (>=10min de áudio com baixo ruído recomendado);
46
+ + Suporta fusão de modelos para alterar timbres (usando guia de processamento ckpt-> mesclagem ckpt);
47
+ + Interface Webui fácil de usar;
48
+ + Use o modelo UVR5 para separar rapidamente vocais e instrumentos.
49
+ + Use o mais poderoso algoritmo de extração de voz de alta frequência [InterSpeech2023-RMVPE](#Credits) para evitar o problema de som mudo. Fornece os melhores resultados (significativamente) e é mais rápido, com consumo de recursos ainda menor que o Crepe_full.
50
+ + Suporta aceleração de placas gráficas AMD/Intel.
51
+ + Aceleração de placas gráficas Intel ARC com suporte para IPEX.
52
+
53
+ ## Preparando o ambiente
54
+ Os comandos a seguir precisam ser executados no ambiente Python versão 3.8 ou superior.
55
+
56
+ (Windows/Linux)
57
+ Primeiro instale as dependências principais através do pip:
58
+ ```bash
59
+ # Instale as dependências principais relacionadas ao PyTorch, pule se instaladas
60
+ # Referência: https://pytorch.org/get-started/locally/
61
+ pip install torch torchvision torchaudio
62
+
63
+ #Para arquitetura Windows + Nvidia Ampere (RTX30xx), você precisa especificar a versão cuda correspondente ao pytorch de acordo com a experiência de https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/issues/ 21
64
+ #pip instalar tocha torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
65
+
66
+ #Para placas Linux + AMD, você precisa usar as seguintes versões do pytorch:
67
+ #pip instalar tocha torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.4.2
68
+ ```
69
+
70
+ Então pode usar poesia para instalar as outras dependências:
71
+ ```bash
72
+ # Instale a ferramenta de gerenciamento de dependências Poetry, pule se instalada
73
+ # Referência: https://python-poetry.org/docs/#installation
74
+ curl -sSL https://install.python-poetry.org | python3 -
75
+
76
+ #Instale as dependências do projeto
77
+ poetry install
78
+ ```
79
+
80
+ Você também pode usar pip para instalá-los:
81
+ ```bash
82
+
83
+ for Nvidia graphics cards
84
+ pip install -r requirements.txt
85
+
86
+ for AMD/Intel graphics cards on Windows (DirectML):
87
+ pip install -r requirements-dml.txt
88
+
89
+ for Intel ARC graphics cards on Linux / WSL using Python 3.10:
90
+ pip install -r requirements-ipex.txt
91
+
92
+ for AMD graphics cards on Linux (ROCm):
93
+ pip install -r requirements-amd.txt
94
+ ```
95
+
96
+ ------
97
+ Usuários de Mac podem instalar dependências via `run.sh`:
98
+ ```bash
99
+ sh ./run.sh
100
+ ```
101
+
102
+ ## Preparação de outros Pré-modelos
103
+ RVC requer outros pré-modelos para inferir e treinar.
104
+
105
+ ```bash
106
+ #Baixe todos os modelos necessários em https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/
107
+ python tools/download_models.py
108
+ ```
109
+
110
+ Ou apenas baixe-os você mesmo em nosso [Huggingface space](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/).
111
+
112
+ Aqui está uma lista de pré-modelos e outros arquivos que o RVC precisa:
113
+ ```bash
114
+ ./assets/hubert/hubert_base.pt
115
+
116
+ ./assets/pretrained
117
+
118
+ ./assets/uvr5_weights
119
+
120
+ Downloads adicionais são necessários se você quiser testar a versão v2 do modelo.
121
+
122
+ ./assets/pretrained_v2
123
+
124
+ Se você deseja testar o modelo da versão v2 (o modelo da versão v2 alterou a entrada do recurso dimensional 256 do Hubert + final_proj de 9 camadas para o recurso dimensional 768 do Hubert de 12 camadas e adicionou 3 discriminadores de período), você precisará baixar recursos adicionais
125
+
126
+ ./assets/pretrained_v2
127
+
128
+ #Se você estiver usando Windows, também pode precisar desses dois arquivos, pule se FFmpeg e FFprobe estiverem instalados
129
+ ffmpeg.exe
130
+
131
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe
132
+
133
+ ffprobe.exe
134
+
135
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe
136
+
137
+ Se quiser usar o algoritmo de extração de tom vocal SOTA RMVPE mais recente, você precisa baixar os pesos RMVPE e colocá-los no diretório raiz RVC
138
+
139
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt
140
+
141
+ Para usuários de placas gráficas AMD/Intel, você precisa baixar:
142
+
143
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx
144
+
145
+ ```
146
+
147
+ Os usuários de placas gráficas Intel ARC precisam executar o comando `source /opt/intel/oneapi/setvars.sh` antes de iniciar o Webui.
148
+
149
+ Em seguida, use este comando para iniciar o Webui:
150
+ ```bash
151
+ python infer-web.py
152
+ ```
153
+
154
+ Se estiver usando Windows ou macOS, você pode baixar e extrair `RVC-beta.7z` para usar RVC diretamente usando `go-web.bat` no Windows ou `sh ./run.sh` no macOS para iniciar o Webui.
155
+
156
+ ## Suporte ROCm para placas gráficas AMD (somente Linux)
157
+ Para usar o ROCm no Linux, instale todos os drivers necessários conforme descrito [aqui](https://rocm.docs.amd.com/en/latest/deploy/linux/os-native/install.html).
158
+
159
+ No Arch use pacman para instalar o driver:
160
+ ````
161
+ pacman -S rocm-hip-sdk rocm-opencl-sdk
162
+ ````
163
+
164
+ Talvez você também precise definir estas variáveis de ambiente (por exemplo, em um RX6700XT):
165
+ ````
166
+ export ROCM_PATH=/opt/rocm
167
+ export HSA_OVERRIDE_GFX_VERSION=10.3.0
168
+ ````
169
+ Verifique também se seu usuário faz parte do grupo `render` e `video`:
170
+ ````
171
+ sudo usermod -aG render $USERNAME
172
+ sudo usermod -aG video $USERNAME
173
+ ````
174
+ Depois disso, você pode executar o WebUI:
175
+ ```bash
176
+ python infer-web.py
177
+ ```
178
+
179
+ ## Credits
180
+ + [ContentVec](https://github.com/auspicious3000/contentvec/)
181
+ + [VITS](https://github.com/jaywalnut310/vits)
182
+ + [HIFIGAN](https://github.com/jik876/hifi-gan)
183
+ + [Gradio](https://github.com/gradio-app/gradio)
184
+ + [FFmpeg](https://github.com/FFmpeg/FFmpeg)
185
+ + [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
186
+ + [audio-slicer](https://github.com/openvpi/audio-slicer)
187
+ + [Vocal pitch extraction:RMVPE](https://github.com/Dream-High/RMVPE)
188
+ + The pretrained model is trained and tested by [yxlllc](https://github.com/yxlllc/RMVPE) and [RVC-Boss](https://github.com/RVC-Boss).
189
+
190
+ ## Thanks to all contributors for their efforts
191
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
192
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
193
+ </a>
194
+
docs/pt/faiss_tips_pt.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ pONTAS de afinação FAISS
2
+ ==================
3
+ # sobre faiss
4
+ faiss é uma biblioteca de pesquisas de vetores densos na área, desenvolvida pela pesquisa do facebook, que implementa com eficiência muitos métodos de pesquisa de área aproximada.
5
+ A Pesquisa Aproximada de área encontra vetores semelhantes rapidamente, sacrificando alguma precisão.
6
+
7
+ ## faiss em RVC
8
+ No RVC, para a incorporação de recursos convertidos pelo HuBERT, buscamos incorporações semelhantes à incorporação gerada a partir dos dados de treinamento e as misturamos para obter uma conversão mais próxima do discurso original. No entanto, como essa pesquisa leva tempo se realizada de forma ingênua, a conversão de alta velocidade é realizada usando a pesquisa aproximada de área.
9
+
10
+ # visão geral da implementação
11
+ Em '/logs/nome-do-seu-modelo/3_feature256', onde o modelo está localizado, os recursos extraídos pelo HuBERT de cada dado de voz estão localizados.
12
+ A partir daqui, lemos os arquivos npy ordenados por nome de arquivo e concatenamos os vetores para criar big_npy. (Este vetor tem a forma [N, 256].)
13
+ Depois de salvar big_npy as /logs/nome-do-seu-modelo/total_fea.npy, treine-o com faiss.
14
+
15
+ Neste artigo, explicarei o significado desses parâmetros.
16
+
17
+ # Explicação do método
18
+ ## Fábrica de Index
19
+ Uma fábrica de Index é uma notação faiss exclusiva que expressa um pipeline que conecta vários métodos de pesquisa de área aproximados como uma string.
20
+ Isso permite que você experimente vários métodos aproximados de pesquisa de área simplesmente alterando a cadeia de caracteres de fábrica do Index.
21
+ No RVC é usado assim:
22
+
23
+ ```python
24
+ index = faiss.index_factory(256, "IVF%s,Flat" % n_ivf)
25
+ ```
26
+ Entre os argumentos de index_factory, o primeiro é o número de dimensões do vetor, o segundo é a string de fábrica do Index e o terceiro é a distância a ser usada.
27
+
28
+ Para uma notação mais detalhada
29
+ https://github.com/facebookresearch/faiss/wiki/The-index-factory
30
+
31
+ ## Construção de Index
32
+ Existem dois Indexs típicos usados como similaridade de incorporação da seguinte forma.
33
+
34
+ - Distância euclidiana (MÉTRICA_L2)
35
+ - Produto interno (METRIC_INNER_PRODUCT)
36
+
37
+ A distância euclidiana toma a diferença quadrática em cada dimensão, soma as diferenças em todas as dimensões e, em seguida, toma a raiz quadrada. Isso é o mesmo que a distância em 2D e 3D que usamos diariamente.
38
+ O produto interno não é usado como um Index de similaridade como é, e a similaridade de cosseno que leva o produto interno depois de ser normalizado pela norma L2 é geralmente usada.
39
+
40
+ O que é melhor depende do caso, mas a similaridade de cosseno é frequentemente usada na incorporação obtida pelo word2vec e modelos de recuperação de imagem semelhantes aprendidos pelo ArcFace. Se você quiser fazer a normalização l2 no vetor X com numpy, você pode fazê-lo com o seguinte código com eps pequeno o suficiente para evitar a divisão 0.
41
+
42
+ ```python
43
+ X_normed = X / np.maximum(eps, np.linalg.norm(X, ord=2, axis=-1, keepdims=True))
44
+ ```
45
+
46
+ Além disso, para a Construção de Index, você pode alterar o Index de distância usado para cálculo escolhendo o valor a ser passado como o terceiro argumento.
47
+
48
+ ```python
49
+ index = faiss.index_factory(dimention, text, faiss.METRIC_INNER_PRODUCT)
50
+ ```
51
+
52
+ ## FI
53
+ IVF (Inverted file indexes) é um algoritmo semelhante ao Index invertido na pesquisa de texto completo.
54
+ Durante o aprendizado, o destino da pesquisa é agrupado com kmeans e o particionamento Voronoi é realizado usando o centro de cluster. A cada ponto de dados é atribuído um cluster, por isso criamos um dicionário que procura os pontos de dados dos clusters.
55
+
56
+ Por exemplo, se os clusters forem atribuídos da seguinte forma
57
+ |index|Cluster|
58
+ |-----|-------|
59
+ |1|A|
60
+ |2|B|
61
+ |3|A|
62
+ |4|C|
63
+ |5|B|
64
+
65
+ O Index invertido resultante se parece com isso:
66
+
67
+ | cluster | Index |
68
+ |-------|-----|
69
+ | A | 1, 3 |
70
+ | B | 2 5 |
71
+ | C | 4 |
72
+
73
+ Ao pesquisar, primeiro pesquisamos n_probe clusters dos clusters e, em seguida, calculamos as distâncias para os pontos de dados pertencentes a cada cluster.
74
+
75
+ # Parâmetro de recomendação
76
+ Existem diretrizes oficiais sobre como escolher um Index, então vou explicar de
77
+ acordo. https://github.com/facebookresearch/faiss/wiki/Guidelines-to-choose-an-index
78
+
79
+ Para conjuntos de dados abaixo de 1M, o 4bit-PQ é o método mais eficiente disponível no faiss em abril de 2023.
80
+ Combinando isso com a fertilização in vitro, estreitando os candidatos com 4bit-PQ e, finalmente, recalcular a distância com um Index preciso pode ser descrito usando a seguinte fábrica de Indexs.
81
+
82
+ ```python
83
+ index = faiss.index_factory(256, "IVF1024,PQ128x4fs,RFlat")
84
+ ```
85
+
86
+ ## Parâmetros recomendados para FIV
87
+ Considere o caso de muitas FIVs. Por exemplo, se a quantização grosseira por FIV for realizada para o número de dados, isso é o mesmo que uma pesquisa exaustiva ingênua e é ineficiente.
88
+ Para 1M ou menos, os valores de FIV são recomendados entre 4*sqrt(N) ~ 16*sqrt(N) para N número de pontos de dados.
89
+
90
+ Como o tempo de cálculo aumenta proporcionalmente ao número de n_sondas, consulte a precisão e escolha adequadamente. Pessoalmente, não acho que o RVC precise de tanta precisão, então n_probe = 1 está bem.
91
+
92
+ ## FastScan
93
+ O FastScan é um método que permite a aproximação de alta velocidade de distâncias por quantização de produto cartesiano, realizando-as em registros.
94
+ A quantização cartesiana do produto executa o agrupamento independentemente para cada dimensão d (geralmente d = 2) durante o aprendizado, calcula a distância entre os agrupamentos com antecedência e cria uma tabela de pesquisa. No momento da previsão, a distância de cada dimensão pode ser calculada em O(1) olhando para a tabela de pesquisa.
95
+ Portanto, o número que você especifica após PQ geralmente especifica metade da dimensão do vetor.
96
+
97
+ Para uma descrição mais detalhada do FastScan, consulte a documentação oficial.
98
+ https://github.com/facebookresearch/faiss/wiki/Fast-accumulation-of-PQ-and-AQ-codes-(FastScan)
99
+
100
+ ## RFlat
101
+ RFlat é uma instrução para recalcular a distância aproximada calculada pelo FastScan com a distância exata especificada pelo terceiro argumento da Construção de Index.
102
+ Ao obter áreas k, os pontos k*k_factor são recalculados.
docs/pt/faq_pt.md ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # <b>FAQ AI HUB BRASIL</b>
2
+ ## <span style="color: #337dff;">O que é epoch, quantos utilizar, quanto de dataset utilizar e qual à configuração interessante?</span>
3
+ Epochs basicamente quantas vezes o seu dataset foi treinado.
4
+
5
+ Recomendado ler Q8 e Q9 no final dessa página pra entender mais sobre dataset e epochs
6
+
7
+ __**Não é uma regra, mas opinião:**__
8
+
9
+ ### **Mangio-Crepe Hop Length**
10
+ - 64 pra cantores e dubladores
11
+ - 128(padrão) para os demais (editado)
12
+
13
+ ### **Epochs e dataset**
14
+ 600epoch para cantores - --dataset entre 10 e 50 min desnecessario mais que 50 minutos--
15
+ 300epoch para os demais - --dataset entre 10 e 50 min desnecessario mais que 50 minutos--
16
+
17
+ ### **Tom**
18
+ magio-crepe se for audios extraído de alguma musica
19
+ harvest se for de estúdio<hr>
20
+
21
+ ## <span style="color: #337dff;">O que é index?</span>
22
+ Basicamente o que define o sotaque. Quanto maior o numero, mas próximo o sotaque fica do original. Porém, quando o modelo é bem, não é necessário um index.<hr>
23
+
24
+ ## <span style="color: #337dff;">O que significa cada sigla (pm, harvest, crepe, magio-crepe, RMVPE)?</span>
25
+
26
+ - pm = extração mais rápida, mas discurso de qualidade inferior;
27
+ - harvest = graves melhores, mas extremamente lentos;
28
+ - dio = conversão rápida mas pitch ruim;
29
+ - crepe = melhor qualidade, mas intensivo em GPU;
30
+ - crepe-tiny = mesma coisa que o crepe, só que com a qualidade um pouco inferior;
31
+ - **mangio-crepe = melhor qualidade, mais otimizado; (MELHOR OPÇÃO)**
32
+ - mangio-crepe-tiny = mesma coisa que o mangio-crepe, só que com a qualidade um pouco inferior;
33
+ - RMVPE: um modelo robusto para estimativa de afinação vocal em música polifônica;<hr>
34
+
35
+ ## <span style="color: #337dff;">Pra rodar localmente, quais os requisitos minimos?</span>
36
+ Já tivemos relatos de pessoas com GTX 1050 rodando inferencia, se for treinar numa 1050 vai demorar muito mesmo e inferior a isso, normalmente da tela azul
37
+
38
+ O mais importante é placa de vídeo, vram na verdade
39
+ Se você tiver 4GB ou mais, você tem uma chance.
40
+
41
+ **NOS DOIS CASOS NÃO É RECOMENDADO UTILIZAR O PC ENQUANTO ESTÁ UTILIZNDO, CHANCE DE TELA AZUL É ALTA**
42
+ ### Inference
43
+ Não é algo oficial para requisitos minimos
44
+ - Placa de vídeo: nvidia de 4gb
45
+ - Memoria ram: 8gb
46
+ - CPU: ?
47
+ - Armanezamento: 20gb (sem modelos)
48
+
49
+ ### Treinamento de voz
50
+ Não é algo oficial para requisitos minimos
51
+ - Placa de vídeo: nvidia de 6gb
52
+ - Memoria ram: 16gb
53
+ - CPU: ?
54
+ - Armanezamento: 20gb (sem modelos)<hr>
55
+
56
+ ## <span style="color: #337dff;">Limite de GPU no Google Colab excedido, apenas CPU o que fazer?</span>
57
+ Recomendamos esperar outro dia pra liberar mais 15gb ou 12 horas pra você. Ou você pode contribuir com o Google pagando algum dos planos, ai aumenta seu limite.<br>
58
+ Utilizar apenas CPU no Google Colab demora DEMAIS.<hr>
59
+
60
+
61
+ ## <span style="color: #337dff;">Google Colab desconectando com muita frequencia, o que fazer?</span>
62
+ Neste caso realmente não tem muito o que fazer. Apenas aguardar o proprietário do código corrigir ou a gente do AI HUB Brasil achar alguma solução. Isso acontece por diversos motivos, um incluindo a Google barrando o treinamento de voz.<hr>
63
+
64
+ ## <span style="color: #337dff;">O que é Batch Size/Tamanho de lote e qual numero utilizar?</span>
65
+ Batch Size/Tamanho do lote é basicamente quantos epoch faz ao mesmo tempo. Se por 20, ele fazer 20 epoch ao mesmo tempo e isso faz pesar mais na máquina e etc.<br>
66
+
67
+ No Google Colab você pode utilizar até 20 de boa.<br>
68
+ Se rodando localmente, depende da sua placa de vídeo, começa por baixo (6) e vai testando.<hr>
69
+
70
+ ## <span style="color: #337dff;">Sobre backup na hora do treinamento</span>
71
+ Backup vai de cada um. Eu quando uso a ``easierGUI`` utilizo a cada 100 epoch (meu caso isolado).
72
+ No colab, se instavel, coloque a cada 10 epoch
73
+ Recomendo utilizarem entre 25 e 50 pra garantir.
74
+
75
+ Lembrando que cada arquivo geral é por volta de 50mb, então tenha muito cuidado quanto você coloca. Pois assim pode acabar lotando seu Google Drive ou seu PC.
76
+
77
+ Depois de finalizado, da pra apagar os epoch de backup.<hr>
78
+
79
+ ## <span style="color: #337dff;">Como continuar da onde parou pra fazer mais epochs?</span>
80
+ Primeira coisa que gostaria de lembrar, não necessariamente quanto mais epochs melhor. Se fizer epochs demais vai dar **overtraining** o que pode ser ruim.
81
+
82
+ ### GUI NORMAL
83
+ - Inicie normalmente a GUI novamente.
84
+ - Na aba de treino utilize o MESMO nome que estava treinando, assim vai continuar o treino onde parou o ultimo backup.
85
+ - Ignore as opções ``Processar o Conjunto de dados`` e ``Extrair Tom``
86
+ - Antes de clicar pra treinar, arrume os epoch, bakcup e afins.
87
+ - Obviamente tem que ser um numero maior do qu estava em epoch.
88
+ - Backup você pode aumentar ou diminuir
89
+ - Agora você vai ver a opção ``Carregue o caminho G do modelo base pré-treinado:`` e ``Carregue o caminho D do modelo base pré-treinado:``
90
+ -Aqui você vai por o caminho dos modelos que estão em ``./logs/minha-voz``
91
+ - Vai ficar algo parecido com isso ``e:/RVC/logs/minha-voz/G_0000.pth`` e ``e:/RVC/logs/minha-voz/D_0000.pth``
92
+ -Coloque pra treinar
93
+
94
+ **Lembrando que a pasta logs tem que ter todos os arquivos e não somente o arquivo ``G`` e ``D``**
95
+
96
+ ### EasierGUI
97
+ - Inicie normalmente a easierGUI novamente.
98
+ - Na aba de treino utilize o MESMO nome que estava treinando, assim vai continuar o treino onde parou o ultimo backup.
99
+ - Selecione 'Treinar modelo', pode pular os 2 primeiros passos já que vamos continuar o treino.<hr><br>
100
+
101
+
102
+ # <b>FAQ Original traduzido</b>
103
+ ## <b><span style="color: #337dff;">Q1: erro ffmpeg/erro utf8.</span></b>
104
+ Provavelmente não é um problema do FFmpeg, mas sim um problema de caminho de áudio;
105
+
106
+ O FFmpeg pode encontrar um erro ao ler caminhos contendo caracteres especiais como spaces e (), o que pode causar um erro FFmpeg; e quando o áudio do conjunto de treinamento contém caminhos chineses, gravá-lo em filelist.txt pode causar um erro utf8.<hr>
107
+
108
+ ## <b><span style="color: #337dff;">Q2:Não é possível encontrar o arquivo de Index após "Treinamento com um clique".</span></b>
109
+ Se exibir "O treinamento está concluído. O programa é fechado ", então o modelo foi treinado com sucesso e os erros subsequentes são falsos;
110
+
111
+ A falta de um arquivo de index 'adicionado' após o treinamento com um clique pode ser devido ao conjunto de treinamento ser muito grande, fazendo com que a adição do index fique presa; isso foi resolvido usando o processamento em lote para adicionar o index, o que resolve o problema de sobrecarga de memória ao adicionar o index. Como solução temporária, tente clicar no botão "Treinar Index" novamente.<hr>
112
+
113
+ ## <b><span style="color: #337dff;">Q3:Não é possível encontrar o modelo em “Modelo de voz” após o treinamento</span></b>
114
+ Clique em "Atualizar lista de voz" ou "Atualizar na EasyGUI e verifique novamente; se ainda não estiver visível, verifique se há erros durante o treinamento e envie capturas de tela do console, da interface do usuário da Web e dos ``logs/experiment_name/*.log`` para os desenvolvedores para análise posterior.<hr>
115
+
116
+ ## <b><span style="color: #337dff;">Q4:Como compartilhar um modelo/Como usar os modelos dos outros?</span></b>
117
+ Os arquivos ``.pth`` armazenados em ``*/logs/minha-voz`` não são destinados para compartilhamento ou inference, mas para armazenar os checkpoits do experimento para reprodutibilidade e treinamento adicional. O modelo a ser compartilhado deve ser o arquivo ``.pth`` de 60+MB na pasta **weights**;
118
+
119
+ No futuro, ``weights/minha-voz.pth`` e ``logs/minha-voz/added_xxx.index`` serão mesclados em um único arquivo de ``weights/minha-voz.zip`` para eliminar a necessidade de entrada manual de index; portanto, compartilhe o arquivo zip, não somente o arquivo .pth, a menos que você queira continuar treinando em uma máquina diferente;
120
+
121
+ Copiar/compartilhar os vários arquivos .pth de centenas de MB da pasta de logs para a pasta de weights para inference forçada pode resultar em erros como falta de f0, tgt_sr ou outras chaves. Você precisa usar a guia ckpt na parte inferior para manualmente ou automaticamente (se as informações forem encontradas nos ``logs/minha-voz``), selecione se deseja incluir informações de tom e opções de taxa de amostragem de áudio de destino e, em seguida, extrair o modelo menor. Após a extração, haverá um arquivo pth de 60+ MB na pasta de weights, e você pode atualizar as vozes para usá-lo.<hr>
122
+
123
+ ## <b><span style="color: #337dff;">Q5 Erro de conexão:</span></b>
124
+ Para sermos otimistas, aperte F5/recarregue a página, pode ter sido apenas um bug da GUI
125
+
126
+ Se não...
127
+ Você pode ter fechado o console (janela de linha de comando preta).
128
+ Ou o Google Colab, no caso do Colab, as vezes pode simplesmente fechar<hr>
129
+
130
+ ## <b><span style="color: #337dff;">Q6: Pop-up WebUI 'Valor esperado: linha 1 coluna 1 (caractere 0)'.</span></b>
131
+ Desative o proxy LAN do sistema/proxy global e atualize.<hr>
132
+
133
+ ## <b><span style="color: #337dff;">Q7:Como treinar e inferir sem a WebUI?</span></b>
134
+ Script de treinamento:
135
+ <br>Você pode executar o treinamento em WebUI primeiro, e as versões de linha de comando do pré-processamento e treinamento do conjunto de dados serão exibidas na janela de mensagens.<br>
136
+
137
+ Script de inference:
138
+ <br>https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py<br>
139
+
140
+
141
+ por exemplo<br>
142
+
143
+ ``runtime\python.exe myinfer.py 0 "E:\audios\1111.wav" "E:\RVC\logs\minha-voz\added_IVF677_Flat_nprobe_7.index" harvest "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True``<br>
144
+
145
+
146
+ f0up_key=sys.argv[1]<br>
147
+ input_path=sys.argv[2]<br>
148
+ index_path=sys.argv[3]<br>
149
+ f0method=sys.argv[4]#harvest or pm<br>
150
+ opt_path=sys.argv[5]<br>
151
+ model_path=sys.argv[6]<br>
152
+ index_rate=float(sys.argv[7])<br>
153
+ device=sys.argv[8]<br>
154
+ is_half=bool(sys.argv[9])<hr>
155
+
156
+ ## <b><span style="color: #337dff;">Q8: Erro Cuda/Cuda sem memória.</span></b>
157
+ Há uma pequena chance de que haja um problema com a configuração do CUDA ou o dispositivo não seja suportado; mais provavelmente, não há memória suficiente (falta de memória).<br>
158
+
159
+ Para treinamento, reduza o (batch size) tamanho do lote (se reduzir para 1 ainda não for suficiente, talvez seja necessário alterar a placa gráfica); para inference, ajuste as configurações x_pad, x_query, x_center e x_max no arquivo config.py conforme necessário. Cartões de memória 4G ou inferiores (por exemplo, 1060(3G) e várias placas 2G) podem ser abandonados, enquanto os placas de vídeo com memória 4G ainda têm uma chance.<hr>
160
+
161
+ ## <b><span style="color: #337dff;">Q9:Quantos total_epoch são ótimos?</span></b>
162
+ Se a qualidade de áudio do conjunto de dados de treinamento for ruim e o nível de ruído for alto, **20-30 epochs** são suficientes. Defini-lo muito alto não melhorará a qualidade de áudio do seu conjunto de treinamento de baixa qualidade.<br>
163
+
164
+ Se a qualidade de áudio do conjunto de treinamento for alta, o nível de ruído for baixo e houver duração suficiente, você poderá aumentá-lo. **200 é aceitável** (uma vez que o treinamento é rápido e, se você puder preparar um conjunto de treinamento de alta qualidade, sua GPU provavelmente poderá lidar com uma duração de treinamento mais longa sem problemas).<hr>
165
+
166
+ ## <b><span style="color: #337dff;">Q10:Quanto tempo de treinamento é necessário?</span></b>
167
+
168
+ **Recomenda-se um conjunto de dados de cerca de 10 min a 50 min.**<br>
169
+
170
+ Com garantia de alta qualidade de som e baixo ruído de fundo, mais pode ser adicionado se o timbre do conjunto de dados for uniforme.<br>
171
+
172
+ Para um conjunto de treinamento de alto nível (limpo + distintivo), 5min a 10min é bom.<br>
173
+
174
+ Há algumas pessoas que treinaram com sucesso com dados de 1 a 2 minutos, mas o sucesso não é reproduzível por outros e não é muito informativo. <br>Isso requer que o conjunto de treinamento tenha um timbre muito distinto (por exemplo, um som de menina de anime arejado de alta frequência) e a qualidade do áudio seja alta;
175
+ Dados com menos de 1 minuto, já obtivemo sucesso. Mas não é recomendado.<hr>
176
+
177
+
178
+ ## <b><span style="color: #337dff;">Q11:Qual é a taxa do index e como ajustá-la?</span></b>
179
+ Se a qualidade do tom do modelo pré-treinado e da fonte de inference for maior do que a do conjunto de treinamento, eles podem trazer a qualidade do tom do resultado do inference, mas ao custo de um possível viés de tom em direção ao tom do modelo subjacente/fonte de inference, em vez do tom do conjunto de treinamento, que é geralmente referido como "vazamento de tom".<br>
180
+
181
+ A taxa de index é usada para reduzir/resolver o problema de vazamento de timbre. Se a taxa do index for definida como 1, teoricamente não há vazamento de timbre da fonte de inference e a qualidade do timbre é mais tendenciosa em relação ao conjunto de treinamento. Se o conjunto de treinamento tiver uma qualidade de som mais baixa do que a fonte de inference, uma taxa de index mais alta poderá reduzir a qualidade do som. Reduzi-lo a 0 não tem o efeito de usar a mistura de recuperação para proteger os tons definidos de treinamento.<br>
182
+
183
+ Se o conjunto de treinamento tiver boa qualidade de áudio e longa duração, aumente o total_epoch, quando o modelo em si é menos propenso a se referir à fonte inferida e ao modelo subjacente pré-treinado, e há pouco "vazamento de tom", o index_rate não é importante e você pode até não criar/compartilhar o arquivo de index.<hr>
184
+
185
+ ## <b><span style="color: #337dff;">Q12:Como escolher o GPU ao inferir?</span></b>
186
+ No arquivo ``config.py``, selecione o número da placa em "device cuda:".<br>
187
+
188
+ O mapeamento entre o número da placa e a placa gráfica pode ser visto na seção de informações da placa gráfica da guia de treinamento.<hr>
189
+
190
+ ## <b><span style="color: #337dff;">Q13:Como usar o modelo salvo no meio do treinamento?</span></b>
191
+ Salvar via extração de modelo na parte inferior da guia de processamento do ckpt.<hr>
192
+
193
+ ## <b><span style="color: #337dff;">Q14: Erro de arquivo/memória (durante o treinamento)?</span></b>
194
+ Muitos processos e sua memória não é suficiente. Você pode corrigi-lo por:
195
+
196
+ 1. Diminuir a entrada no campo "Threads da CPU".
197
+ 2. Diminuir o tamanho do conjunto de dados.
198
+
199
+ ## Q15: Como continuar treinando usando mais dados
200
+
201
+ passo 1: coloque todos os dados wav no path2.
202
+
203
+ etapa 2: exp_name2 + path2 -> processar conjunto de dados e extrair recurso.
204
+
205
+ passo 3: copie o arquivo G e D mais recente de exp_name1 (seu experimento anterior) para a pasta exp_name2.
206
+
207
+ passo 4: clique em "treinar o modelo" e ele continuará treinando desde o início da época anterior do modelo exp.
208
+
209
+ ## Q16: erro sobre llvmlite.dll
210
+
211
+ OSError: Não foi possível carregar o arquivo de objeto compartilhado: llvmlite.dll
212
+
213
+ FileNotFoundError: Não foi possível encontrar o módulo lib\site-packages\llvmlite\binding\llvmlite.dll (ou uma de suas dependências). Tente usar o caminho completo com sintaxe de construtor.
214
+
215
+ O problema acontecerá no Windows, instale https://aka.ms/vs/17/release/vc_redist.x64.exe e será corrigido.
216
+
217
+ ## Q17: RuntimeError: O tamanho expandido do tensor (17280) deve corresponder ao tamanho existente (0) na dimensão 1 não singleton. Tamanhos de destino: [1, 17280]. Tamanhos de tensor: [0]
218
+
219
+ Exclua os arquivos wav cujo tamanho seja significativamente menor que outros e isso não acontecerá novamente. Em seguida, clique em "treinar o modelo" e "treinar o índice".
220
+
221
+ ## Q18: RuntimeError: O tamanho do tensor a (24) deve corresponder ao tamanho do tensor b (16) na dimensão não singleton 2
222
+
223
+ Não altere a taxa de amostragem e continue o treinamento. Caso seja necessário alterar, o nome do exp deverá ser alterado e o modelo será treinado do zero. Você também pode copiar o pitch e os recursos (pastas 0/1/2/2b) extraídos da última vez para acelerar o processo de treinamento.
224
+
docs/pt/training_tips_pt.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Instruções e dicas para treinamento RVC
2
+ ======================================
3
+ Estas DICAS explicam como o treinamento de dados é feito.
4
+
5
+ # Fluxo de treinamento
6
+ Explicarei ao longo das etapas na guia de treinamento da GUI.
7
+
8
+ ## Passo 1
9
+ Defina o nome do experimento aqui.
10
+
11
+ Você também pode definir aqui se o modelo deve levar em consideração o pitch.
12
+ Se o modelo não considerar o tom, o modelo será mais leve, mas não será adequado para cantar.
13
+
14
+ Os dados de cada experimento são colocados em `/logs/nome-do-seu-modelo/`.
15
+
16
+ ## Passo 2a
17
+ Carrega e pré-processa áudio.
18
+
19
+ ### Carregar áudio
20
+ Se você especificar uma pasta com áudio, os arquivos de áudio dessa pasta serão lidos automaticamente.
21
+ Por exemplo, se você especificar `C:Users\hoge\voices`, `C:Users\hoge\voices\voice.mp3` será carregado, mas `C:Users\hoge\voices\dir\voice.mp3` será Não carregado.
22
+
23
+ Como o ffmpeg é usado internamente para leitura de áudio, se a extensão for suportada pelo ffmpeg, ela será lida automaticamente.
24
+ Após converter para int16 com ffmpeg, converta para float32 e normalize entre -1 e 1.
25
+
26
+ ### Eliminar ruído
27
+ O áudio é suavizado pelo filtfilt do scipy.
28
+
29
+ ### Divisão de áudio
30
+ Primeiro, o áudio de entrada é dividido pela detecção de partes de silêncio que duram mais que um determinado período (max_sil_kept=5 segundos?). Após dividir o áudio no silêncio, divida o áudio a cada 4 segundos com uma sobreposição de 0,3 segundos. Para áudio separado em 4 segundos, após normalizar o volume, converta o arquivo wav para `/logs/nome-do-seu-modelo/0_gt_wavs` e, em seguida, converta-o para taxa de amostragem de 16k para `/logs/nome-do-seu-modelo/1_16k_wavs ` como um arquivo wav.
31
+
32
+ ## Passo 2b
33
+ ### Extrair pitch
34
+ Extraia informações de pitch de arquivos wav. Extraia as informações de pitch (=f0) usando o método incorporado em Parselmouth ou pyworld e salve-as em `/logs/nome-do-seu-modelo/2a_f0`. Em seguida, converta logaritmicamente as informações de pitch para um número inteiro entre 1 e 255 e salve-as em `/logs/nome-do-seu-modelo/2b-f0nsf`.
35
+
36
+ ### Extrair feature_print
37
+ Converta o arquivo wav para incorporação antecipadamente usando HuBERT. Leia o arquivo wav salvo em `/logs/nome-do-seu-modelo/1_16k_wavs`, converta o arquivo wav em recursos de 256 dimensões com HuBERT e salve no formato npy em `/logs/nome-do-seu-modelo/3_feature256`.
38
+
39
+ ## Passo 3
40
+ treinar o modelo.
41
+ ### Glossário para iniciantes
42
+ No aprendizado profundo, o conjunto de dados é dividido e o aprendizado avança aos poucos. Em uma atualização do modelo (etapa), os dados batch_size são recuperados e previsões e correções de erros são realizadas. Fazer isso uma vez para um conjunto de dados conta como um epoch.
43
+
44
+ Portanto, o tempo de aprendizagem é o tempo de aprendizagem por etapa x (o número de dados no conjunto de dados/tamanho do lote) x o número de epoch. Em geral, quanto maior o tamanho do lote, mais estável se torna o aprendizado (tempo de aprendizado por etapa ÷ tamanho do lote) fica menor, mas usa mais memória GPU. A RAM da GPU pode ser verificada com o comando nvidia-smi. O aprendizado pode ser feito em pouco tempo aumentando o tamanho do lote tanto quanto possível de acordo com a máquina do ambiente de execução.
45
+
46
+ ### Especifique o modelo pré-treinado
47
+ O RVC começa a treinar o modelo a partir de pesos pré-treinados em vez de 0, para que possa ser treinado com um pequeno conjunto de dados.
48
+
49
+ Por padrão
50
+
51
+ - Se você considerar o pitch, ele carrega `rvc-location/pretrained/f0G40k.pth` e `rvc-location/pretrained/f0D40k.pth`.
52
+ - Se você não considerar o pitch, ele carrega `rvc-location/pretrained/f0G40k.pth` e `rvc-location/pretrained/f0D40k.pth`.
53
+
54
+ Ao aprender, os parâmetros do modelo são salvos em `logs/nome-do-seu-modelo/G_{}.pth` e `logs/nome-do-seu-modelo/D_{}.pth` para cada save_every_epoch, mas especificando nesse caminho, você pode começar a aprender. Você pode reiniciar ou iniciar o treinamento a partir de weights de modelo aprendidos em um experimento diferente.
55
+
56
+ ### Index de aprendizado
57
+ O RVC salva os valores de recursos do HuBERT usados durante o treinamento e, durante a inferência, procura valores de recursos que sejam semelhantes aos valores de recursos usados durante o aprendizado para realizar a inferência. Para realizar esta busca em alta velocidade, o index é aprendido previamente.
58
+ Para aprendizagem de index, usamos a biblioteca de pesquisa de associação de áreas aproximadas faiss. Leia o valor do recurso `logs/nome-do-seu-modelo/3_feature256` e use-o para aprender o index, e salve-o como `logs/nome-do-seu-modelo/add_XXX.index`.
59
+
60
+ (A partir da versão 20230428update, ele é lido do index e não é mais necessário salvar/especificar.)
61
+
62
+ ### Descrição do botão
63
+ - Treinar modelo: Após executar o passo 2b, pressione este botão para treinar o modelo.
64
+ - Treinar índice de recursos: após treinar o modelo, execute o aprendizado do index.
65
+ - Treinamento com um clique: etapa 2b, treinamento de modelo e treinamento de index de recursos, tudo de uma vez.
docs/tr/Changelog_TR.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ### 2023-08-13
3
+ 1- Düzenli hata düzeltmeleri
4
+ - Minimum toplam epoch sayısını 1 olarak değiştirin ve minimum toplam epoch sayısını 2 olarak değiştirin
5
+ - Ön eğitim modellerini kullanmama nedeniyle oluşan eğitim hatalarını düzeltin
6
+ - Eşlik eden vokallerin ayrılmasından sonra grafik belleğini temizleyin
7
+ - Faiss kaydetme yolu mutlak yoldan göreli yola değiştirilmiştir
8
+ - Boşluk içeren yolu destekleyin (hem eğitim kümesi yolu hem de deney adı desteklenir ve artık hata rapor edilmez)
9
+ - Filelist, zorunlu utf8 kodlamasını iptal eder
10
+ - Gerçek zamanlı ses değişikliği sırasında faiss aramasından kaynaklanan CPU tüketim sorununu çözün
11
+
12
+ 2- Temel güncellemeler
13
+ - Geçerli en güçlü açık kaynak vokal ton çıkarma modeli RMVPE'yi eğitin ve RVC eğitimi, çevrimdışı/gerçek zamanlı çıkarım için kullanın, PyTorch/Onnx/DirectML destekler
14
+ - Pytorch_DML aracılığıyla AMD ve Intel grafik kartları için destek ekleyin
15
+
16
+ (1) Gerçek zamanlı ses değişimi (2) Çıkarım (3) Vokal eşlik ayrımı (4) Şu anda desteklenmeyen eğitim, CPU eğitimine geçiş yapacaktır; Onnx_Dml ile gpu için RMVPE çıkarımını destekler
17
+
18
+
19
+ ### 2023-06-18
20
+ - Yeni ön eğitilmiş v2 modeller: 32k ve 48k
21
+ - F0 modeli çıkarım hatalarını düzeltme
22
+ - Eğitim kümesi 1 saati aşarsa, özelliği şekil açısından küçültmek için otomatik minibatch-kmeans yapın, böylece indeks eğitimi, eklemesi ve araması çok daha hızlı olur.
23
+ - Bir oyunca vokal2guitar huggingface alanı sağlama
24
+ - Aykırı kısa kesim eğitim kümesi seslerini otomatik olarak silme
25
+ - Onnx dışa aktarma sekmesi
26
+
27
+ Başarısız deneyler:
28
+ - ~~Özellik çıkarımı: zamansal özellik çıkarımı ekleme: etkili değil~~
29
+ - ~~Özellik çıkarımı: PCAR boyut azaltma ekleme: arama daha yavaş~~
30
+ - ~~Eğitim sırasında rastgele veri artırma: etkili değil~~
31
+
32
+ Yapılacaklar listesi:
33
+ - ~~Vocos-RVC (küçük vokoder): etkili değil~~
34
+ - ~~Eğitim için Crepe desteği: RMVPE ile değiştirildi~~
35
+ - ~~Yarı hassas Crepe çıkarımı: RMVPE ile değiştirildi. Ve zor gerçekleştirilebilir.~~
36
+ - F0 düzenleyici desteği
37
+
38
+ ### 2023-05-28
39
+ - v2 jupyter notebook, korece değişiklik günlüğü, bazı çevre gereksinimlerini düzeltme
40
+ - Sesli olmayan ünsüz ve nefes koruma modu ekleme
41
+ - Crepe-full ton algılama desteği ekleme
42
+ - UVR5 vokal ayrımı: yankı kaldırma modelleri ve yankı kaldırma modelleri destekleme
43
+ - İndeks adında deney adı ve sürüm ekleme
44
+ - Toplu ses dönüşüm işleme ve UVR5 vokal ayrımı sırasında çıkış seslerinin ihracat formatını kullanıcıların manuel olarak seçmelerine olanak tanıma
45
+ - v1 32k model eğitimi artık desteklenmiyor
46
+
47
+ ### 2023-05-13
48
+ - Tek tıklamayla paketin eski sürümündeki çalışma zamanındaki gereksiz kodları temizleme: lib.infer_pack ve uvr5_pack
49
+ - Eğitim seti ön işleme içindeki sahte çoklu işlem hatasını düzeltme
50
+ - Harvest ton tanıma algoritması için ortanca filtre yarıçap ayarı ekleme
51
+ - Çıkış sesi için örnek alma örneği için yeniden örnekleme desteği ekleme
52
+ - Eğitim için "n_cpu" çoklu işlem ayarı, "f0 çıkarma" yerine "veri ön işleme ve f0 çıkarma" için değiştirildi
53
+ - Günlükler klasörü altındaki indeks yollarını otomatik olarak tespit etme ve bir açılır liste işlevi sağlama
54
+ - Sekme sayfasına "Sıkça Sorulan Sorular ve Cevaplar"ı ekleme (ayrıca github RVC wiki'ye de bakabilirsiniz)
55
+ - Çıkarım sırasında aynı giriş sesi yolunu kullanırken harvest tonunu önbelleğe alma (amaç: harvest ton çıkarımı kullanırken, tüm işlem hattı uzun ve tekrarlayan bir ton çıkarım işlemi geçirecektir. Önbellekleme kullanılmazsa, farklı timbre, indeks ve ton ortanca filtreleme yarıçapı ayarlarıyla deney yapan kullanıcılar, ilk çıkarım sonrası çok acı verici bir bekleme süreci yaşayacaktır)
56
+
57
+ ### 2023-05-14
58
+ - Girişin hacim zarfını çıktının hacim zarfıyla karıştırmak veya değiştirmek için girişin hacim zarfını kullanma (problemi "giriş sessizleştirme ve çıktı küçük
59
+
60
+ amplitüdlü gürültü" sorununu hafifletebilir. Giriş sesi arka plan gürültüsü yüksekse, açık olması önerilmez ve varsayılan olarak açık değildir (1 varsayılan olarak kapalı olarak kabul edilir)
61
+ - Belirli bir frekansta filtreleme uygulama eğitim ve çıkarım için 50Hz'nin altındaki frekans bantları için
62
+ - Pyworld'un varsayılan 80'den 50'ye minimum ton çıkarma sınırlamasını eğitim ve çıkarım için düşürme, 50-80Hz arasındaki erkek alçak seslerin sessizleştirilmemesine izin verme
63
+ - WebUI, sistem yereli diline göre dil değiştirme (şu anda en_US, ja_JP, zh_CN, zh_HK, zh_SG, zh_TW'yi destekliyor; desteklenmeyen durumda varsayılan olarak en_US'ye geçer)
64
+ - Belirli bir giriş sesi yolunu kullanırken harvest tonunu önbelleğe alma (amaç: harvest ton çıkarma kullanırken, tüm işlem hattı uzun ve tekrarlayan bir ton çıkarma süreci geçirecektir. Önbellekleme kullanılmazsa, farklı timbre, indeks ve ton ortanca filtreleme yarıçapı ayarlarıyla deney yapan kullanıcılar, ilk çıkarım sonrası çok acı verici bir bekleme süreci yaşayacaktır)
65
+
66
+ ### 2023-04-09 Güncellemesi
67
+ - GPU kullanım oranını artırmak için eğitim parametrelerini düzeltme: A100, %25'ten yaklaşık %90'a, V100: %50'den yaklaşık %90'a, 2060S: %60'tan yaklaşık %85'e, P40: %25'ten yaklaşık %95'e; eğitim hızını önemli ölçüde artırma
68
+ - Parametre değişti: toplam_batch_size artık GPU başına batch_size
69
+ - Toplam_epoch değişti: maksimum sınırı 1000'e yükseltildi; varsayılan 10'dan 20'ye yükseltildi
70
+ - ckpt çıkarımı ile çalma tanıma hatasını düzeltme, anormal çıkarım oluşturan
71
+ - Dağıtılmış eğitimde her sıra için ckpt kaydetme sorununu düzeltme
72
+ - Özellik çıkarımı için NaN özellik filtrelemesi uygulama
73
+ - Sessiz giriş/çıkışın rastgele ünsüzler veya gürültü üretme sorununu düzeltme (eski modeller yeni bir veri kümesiyle tekrar eğitilmelidir)
74
+
75
+ ### 2023-04-16 Güncellemesi
76
+ - Yerel gerçek zamanlı ses değiştirme mini-GUI'si ekleme, çift tıklayarak go-realtime-gui.bat ile başlayın
77
+ - Eğitim ve çıkarım sırasında 50Hz'nin altındaki frekans bantlarını filtreleme uygulama
78
+ - Pyworld'deki varsayılan 80'den 50'ye minimum ton çıkarma sınırlamasını eğitim ve çıkarım için düşürme, 50-80Hz arasındaki erkek alçak seslerin sessizleştirilmemesine izin verme
79
+ - WebUI, sistem yereli diline göre dil değiştirme (şu anda en_US, ja_JP, zh_CN, zh_HK, zh_SG, zh_TW'yi destekliyor; desteklenmeyen durumda varsayılan olarak en_US'ye geçer)
80
+ - Bazı GPU'ların tanınmasını düzeltme (örneğin, V100-16G tanınmama sorunu, P4 tanınmama sorunu)
81
+
82
+ ### 2023-04-28 Güncellemesi
83
+ - Daha hızlı hız ve daha yüksek kalite için faiss indeks ayarlarını yükseltme
84
+ - Toplam_npy bağımlılığını kaldırma; gelecekteki model paylaşımları için total_npy girdisi gerekmeyecek
85
+ - 16-serisi GPU'lar için kısıtlamaları açma, 4GB VRAM GPU'lar için 4GB çıkarım ayarları sağlama
86
+ - Belirli ses biçimlerine yönelik UVR5 vokal eşlik ayrımındaki hata düzeltme
87
+ - Gerçek zamanlı ses değiştirme mini-GUI şimdi 40k dışı ve tembel ton modellerini destekler
88
+
89
+ ### Gelecekteki Planlar:
90
+ Özellikler:
91
+ - Her epoch kaydetmek için küçük modeller çıkar seçeneğini ekleme
92
+ - Çıkarım sırasında çıkış seslerini belirtilen yolda ekstra mp3 olarak kaydetme seçeneğini ekleme
93
+ - Birden fazla kişinin eğitim sekmesini destekleme (en fazla 4 kişiye kadar)
94
+
95
+ Temel model:
96
+ - Bozuk nefes seslerinin sorununu düzeltmek için nefes alma wav dosyalarını eğitim veri kümesine eklemek
97
+ - Şu anda genişletilmiş bir şarkı veri kümesiyle temel model eğitimi yapıyoruz ve gelecekte yayınlanacak
docs/tr/README.tr.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <div align="center">
3
+
4
+ <h1>Çekme Temelli Ses Dönüşümü Web Arayüzü</h1>
5
+ VITS'e dayalı kullanımı kolay bir Ses Dönüşümü çerçevesi.<br><br>
6
+
7
+ [![madewithlove](https://img.shields.io/badge/made_with-%E2%9D%A4-red?style=for-the-badge&labelColor=orange
8
+ )](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
9
+
10
+ <img src="https://counter.seku.su/cmoe?name=rvc&theme=r34" /><br>
11
+
12
+ [![RVC v1](https://img.shields.io/badge/RVCv1-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v1.ipynb)
13
+ [![RVC v2](https://img.shields.io/badge/RVCv2-F9AB00?style=for-the-badge&logo=googlecolab&color=525252)](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/tools/ipynb/v2.ipynb)
14
+ [![Lisans](https://img.shields.io/github/license/RVC-Project/Retrieval-based-Voice-Conversion-WebUI?style=for-the-badge)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/LICENSE)
15
+ [![Huggingface](https://img.shields.io/badge/🤗%20-Spaces-yellow.svg?style=for-the-badge)](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/)
16
+
17
+ [![Discord](https://img.shields.io/badge/RVC%20Geliştiricileri-Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/HcsmBBGyVk)
18
+
19
+ </div>
20
+
21
+ ------
22
+ [**Değişiklik Geçmişi**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/Changelog_TR.md) | [**SSS (Sıkça Sorulan Sorular)**](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/wiki/SSS-(Sıkça-Sorulan-Sorular))
23
+
24
+ [**İngilizce**](../en/README.en.md) | [**中文简体**](../../README.md) | [**日本語**](../jp/README.ja.md) | [**한국어**](../kr/README.ko.md) ([**韓國語**](../kr/README.ko.han.md)) | [**Français**](../fr/README.fr.md) | [**Türkçe**](../tr/README.tr.md) | [**Português**](../pt/README.pt.md)
25
+
26
+ Burada [Demo Video'muzu](https://www.bilibili.com/video/BV1pm4y1z7Gm/) izleyebilirsiniz!
27
+
28
+ RVC Kullanarak Gerçek Zamanlı Ses Dönüşüm Yazılımı: [w-okada/voice-changer](https://github.com/w-okada/voice-changer)
29
+
30
+ > Ön eğitim modeli için veri kümesi neredeyse 50 saatlik yüksek kaliteli VCTK açık kaynak veri kümesini kullanır.
31
+
32
+ > Yüksek kaliteli lisanslı şarkı veri setleri telif hakkı ihlali olmadan kullanımınız için eklenecektir.
33
+
34
+ > Lütfen daha büyük parametrelere, daha fazla eğitim verisine sahip RVCv3'ün ön eğitimli temel modeline göz atın; daha iyi sonuçlar, değişmeyen çıkarsama hızı ve daha az eğitim verisi gerektirir.
35
+
36
+ ## Özet
37
+ Bu depo aşağıdaki özelliklere sahiptir:
38
+ + Ton sızıntısını en aza indirmek için kaynak özelliğini en iyi çıkarımı kullanarak eğitim kümesi özelliği ile değiştirme;
39
+ + Kolay ve hızlı eğitim, hatta nispeten zayıf grafik kartlarında bile;
40
+ + Az miktarda veriyle bile nispeten iyi sonuçlar alın (>=10 dakika düşük gürültülü konuşma önerilir);
41
+ + Timbraları değiştirmek için model birleştirmeyi destekleme (ckpt işleme sekmesi-> ckpt birleştir);
42
+ + Kullanımı kolay Web arayüzü;
43
+ + UVR5 modelini kullanarak hızla vokalleri ve enstrümanları ayırma.
44
+ + En güçlü Yüksek tiz Ses Çıkarma Algoritması [InterSpeech2023-RMVPE](#Krediler) sessiz ses sorununu önlemek için kullanılır. En iyi sonuçları (önemli ölçüde) sağlar ve Crepe_full'den daha hızlı çalışır, hatta daha düşük kaynak tüketimi sağlar.
45
+ + AMD/Intel grafik kartları hızlandırması desteklenir.
46
+ + Intel ARC grafik kartları hızlandırması IPEX ile desteklenir.
47
+
48
+ ## Ortamın Hazırlanması
49
+ Aşağıdaki komutlar, Python sürümü 3.8 veya daha yüksek olan bir ortamda çalıştırılmalıdır.
50
+
51
+ (Windows/Linux)
52
+ İlk olarak ana bağımlılıkları pip aracılığıyla kurun:
53
+ ```bash
54
+ # PyTorch ile ilgili temel bağımlılıkları kurun, zaten kuruluysa atlayın
55
+ # Referans: https://pytorch.org/get-started/locally/
56
+ pip install torch torchvision torchaudio
57
+
58
+ # Windows + Nvidia Ampere Mimarisi(RTX30xx) için, https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/issues/21 deneyime göre pytorch'a karşılık gelen cuda sürümünü belirtmeniz gerekebilir
59
+ #pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu117
60
+ ```
61
+
62
+ Sonra poetry kullanarak diğer bağımlılıkları kurabilirsiniz:
63
+ ```bash
64
+ # Poetry bağımlılık yönetim aracını kurun, zaten kuruluysa atlayın
65
+ # Referans: https://python-poetry.org/docs/#installation
66
+ curl -sSL https://install.python-poetry.org | python3 -
67
+
68
+ # Projeyi bağımlılıkları kurun
69
+ poetry install
70
+ ```
71
+
72
+ Ayrıca bunları pip kullanarak da kurabilirsiniz:
73
+ ```bash
74
+
75
+ Nvidia grafik kartları için
76
+ pip install -r requirements.txt
77
+
78
+ AMD/Intel grafik kartları için:
79
+ pip install -r requirements-dml.txt
80
+
81
+ Intel ARC grafik kartları için Linux / WSL ile Python 3.10 kullanarak:
82
+ pip install -r requirements-ipex.txt
83
+
84
+ ```
85
+
86
+ ------
87
+ Mac kullanıcıları `run.sh` aracılığıyla bağımlılıkları kurabilir:
88
+ ```bash
89
+ sh ./run.sh
90
+ ```
91
+
92
+ ## Diğer Ön Modellerin Hazırlanması
93
+ RVC'nin çıkarım ve eğitim yapması için diğer ön modellere ihtiyacı vardır.
94
+
95
+ Bu ön modelleri [Huggingface alanımızdan](https://huggingface.co/lj1995/VoiceConversionWebUI/tree/main/) indirmeniz gerekecektir.
96
+
97
+ İşte RVC'nin ihtiyaç duyduğu diğer ön modellerin ve dosyaların bir listesi:
98
+ ```bash
99
+ ./assets/hubert/hubert_base.pt
100
+
101
+ ./assets/pretrained
102
+
103
+ ./assets/uvr5_weights
104
+
105
+ V2 sürümü modelini test etmek isterseniz, ek özellikler indirmeniz gerekecektir.
106
+
107
+ ./assets/pretrained_v2
108
+
109
+ V2 sürüm modelini test etmek isterseniz (v2 sürüm modeli, 9 katmanlı Hubert+final_proj'ün 256 boyutlu özelliğini 12 katmanlı Hubert'ün 768 boyutlu özelliğiyle değiştirmiştir ve 3 periyot ayırıcı eklemiştir), ek özellikleri indirmeniz gerekecektir.
110
+
111
+ ./assets/pretrained_v2
112
+
113
+ Eğer Windows kullanıyorsanız, FFmpeg ve FFprobe kurulu değilse bu iki dosyayı da indirmeniz gerekebilir.
114
+ ffmpeg.exe
115
+
116
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffmpeg.exe
117
+
118
+ ffprobe.exe
119
+
120
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/ffprobe.exe
121
+
122
+ En son SOTA RMVPE vokal ton çıkarma algoritmasını kullanmak istiyorsanız, RMVPE ağırlıklarını indirip RVC kök dizinine koymalısınız.
123
+
124
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.pt
125
+
126
+ AMD/Intel grafik kartları kullanıcıları için indirmeniz gereken:
127
+
128
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/rmvpe.onnx
129
+
130
+ ```
131
+
132
+ Intel ARC grafik kartları kullanıcıları Webui'yi başlatmadan önce `source /opt/intel/oneapi/setvars.sh` komutunu çalıştırmalı.
133
+
134
+ Daha sonra bu komutu kullanarak Webui'yi başlatabilirsiniz:
135
+ ```bash
136
+ python infer-web.py
137
+ ```
138
+ Windows veya macOS kullanıyorsanız, `RVC-beta.7z` dosyasını indirip çıkararak `go-web.bat`i kullanarak veya macOS'ta `sh ./run.sh` kullanarak doğrudan RVC'yi kullanabilirsiniz.
139
+
140
+ ## Krediler
141
+ + [ContentVec](https://github.com/auspicious3000/contentvec/)
142
+ + [VITS](https://github.com/jaywalnut310/vits)
143
+ + [HIFIGAN](https://github.com/jik876/hifi-gan)
144
+ + [Gradio](https://github.com/gradio-app/gradio)
145
+ + [FFmpeg](https://github.com/FFmpeg/FFmpeg)
146
+ + [Ultimate Vocal Remover](https://github.com/Anjok07/ultimatevocalremovergui)
147
+ + [audio-slicer](https://github.com/openvpi/audio-slicer)
148
+ + [Vokal ton çıkarma:RMVPE](https://github.com/Dream-High/RMVPE)
149
+ + Ön eğitimli model [yxlllc](https://github.com/yxlllc/RMVPE) ve [RVC-Boss](https://github.com/RVC-Boss) tarafından eğitilip test edilmiştir.
150
+
151
+ ## Katkıda Bulunan Herkese Teşekkürler
152
+ <a href="https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/graphs/contributors" target="_blank">
153
+ <img src="https://contrib.rocks/image?repo=RVC-Project/Retrieval-based-Voice-Conversion-WebUI" />
154
+ </a>
155
+ ```
docs/tr/faiss_tips_tr.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # faiss Ayar İpuçları
3
+ ==================
4
+
5
+ # faiss Hakkında
6
+ faiss, yoğun vektörler için komşuluk aramalarının bir kütüphanesidir ve birçok yaklaşık komşuluk arama yöntemini verimli bir şekilde uygular. Facebook araştırma tarafından geliştirilen faiss, benzer vektörleri hızlı bir şekilde bulurken bazı doğruluğu feda eder.
7
+
8
+ ## RVC'de faiss Kullanımı
9
+ RVC'de, HuBERT tarafından dönüştürülen özelliklerin gömülmesi için eğitim verisinden oluşturulan gömme ile benzer gömlemeleri ararız ve bunları karıştırarak orijinal konuşmaya daha yakın bir dönüşüm elde ederiz. Ancak bu arama basitçe yapıldığında zaman alır, bu nedenle yaklaşık komşuluk araması kullanarak yüksek hızlı dönüşüm sağlanır.
10
+
11
+ # Uygulama Genel Bakış
12
+ Modelin bulunduğu '/logs/your-experiment/3_feature256' dizininde, her ses verisinden HuBERT tarafından çıkarılan özellikler bulunur.
13
+ Buradan, dosya adına göre sıralanmış npy dosyalarını okuyarak vektörleri birleştirip büyük_npy'yi oluştururuz. (Bu vektörün şekli [N, 256] şeklindedir.)
14
+ Büyük_npy'yi /logs/your-experiment/total_fea.npy olarak kaydettikten sonra, onu faiss ile eğitiriz.
15
+
16
+ Bu makalede, bu parametrelerin anlamını açıklayacağım.
17
+
18
+ # Yöntemin Açıklaması
19
+ ## İndeks Fabrikası
20
+ Bir indeks fabrikası, birden fazla yaklaşık komşuluk arama yöntemini bir dizi olarak bağlayan benzersiz bir faiss gösterimidir. Bu, indeks fabrikası dizesini değiştirerek basitçe çeşitli yaklaşık komşuluk arama yöntemlerini denemenizi sağlar.
21
+ RVC'de bunu şu şekilde kullanırız:
22
+
23
+ ```python
24
+ index = faiss.index_factory(256, "IVF%s,Flat" % n_ivf)
25
+ ```
26
+ index_factory'nin argümanları arasında ilk vektör boyutu, ikinci indeks fabrikası dizesi ve üçüncü kullanılacak mesafe yer alır.
27
+
28
+ Daha ayrıntılı gösterim için
29
+ https://github.com/facebookresearch/faiss/wiki/The-index-factory
30
+
31
+ ## Mesafe İçin İndeks
32
+ Aşağıdaki gibi gömme benzerliği olarak kullanılan iki tipik indeks bulunur.
33
+
34
+ - Öklidyen mesafe (METRIC_L2)
35
+ - iç çarpım (METRIC_INNER_PRODUCT)
36
+
37
+ Öklidyen mesafe, her boyutta karesel farkı alır, tüm boyutlardaki farkları toplar ve ardından karekök alır. Bu, günlük hayatta kullandığımız 2D ve 3D'deki mesafeye benzer.
38
+ İç çarpım, çoğunlukla L2 norm ile normalize edildikten sonra iç çarpımı alan ve genellikle kosinüs benzerliği olarak kullanılan bir benzerlik göstergesi olarak kullanılır.
39
+
40
+ Hangisinin daha iyi olduğu duruma bağlıdır, ancak kosinüs benzerliği genellikle word2vec tarafından elde edilen gömme ve ArcFace tarafından öğrenilen benzer görüntü alım modellerinde kullanılır. Vektör X'i numpy ile l2 normalize yapmak isterseniz, 0 bölme hatasından kaçınmak için yeterince küçük bir eps ile şu kodu kullanabilirsiniz:
41
+
42
+ ```python
43
+ X_normed = X / np.maximum(eps, np.linalg.norm(X, ord=2, axis=-1, keepdims=True))
44
+ ```
45
+
46
+ Ayrıca, indeks fabrikası için üçüncü argüman olarak geçirilecek değeri seçerek hesaplamada kullanılan mesafe indeksini değiştirebilirsiniz.
47
+
48
+ ```python
49
+ index = faiss.index_factory(dimention, text, faiss.METRIC_INNER_PRODUCT)
50
+ ```
51
+
52
+ ## IVF
53
+ IVF (Ters dosya indeksleri), tam metin aramasındaki ters indeksle benzer bir algoritmadır.
54
+ Öğrenme sırasında, arama hedefi kmeans ile kümelendirilir ve küme merkezi kullanılarak Voronoi bölütleme gerçekleştirilir. Her veri noktasına bir küme atanır, bu nedenle veri noktalarını kümeden arayan bir sözlük oluştururuz.
55
+
56
+ Örneğin, kümelere aşağıdaki gibi atanmışsa
57
+ |index|Cluster|
58
+ |-----|-------|
59
+ |1|A|
60
+ |2|B|
61
+ |3|A|
62
+ |4|C|
63
+ |5|B|
64
+
65
+ Elde edilen ters indeks şu şekildedir:
66
+
67
+ |cluster|index|
68
+ |-------|-----|
69
+ |A|1, 3|
70
+ |B|2, 5|
71
+ |C|4|
72
+
73
+ Arama yaparken, önce kümeden n_probe küme ararız ve ardından her küme için ait veri noktalarının mesafelerini hesaplarız.
74
+
75
+ # Tavsiye Edilen Parametreler
76
+ Resmi olarak nasıl bir indeks seçileceği konusunda rehberler bulunmaktadır, bu nedenle buna uygun olarak açıklayacağım.
77
+ https://github.com/facebookresearch/faiss/wiki/Guidelines-to-choose-an-index
78
+
79
+ 1M'den düşük veri kümeleri için, N sayısı için 4bit-PQ, Nisan 2023 itibariyle faiss'de mevcut en verimli yöntemdir.
80
+ Bunu IVF ile birleştirerek adayları 4bit-PQ ile daraltmak ve nihayet doğru bir indeksle mesafeyi yeniden hesaplamak, aşağıdaki indeks fabrikas
81
+
82
+ ını kullanarak açıklanabilir.
83
+
84
+ ```python
85
+ index = faiss.index_factory(256, "IVF1024,PQ128x4fs,RFlat")
86
+ ```
87
+
88
+ ## IVF İçin Tavsiye Edilen Parametreler
89
+ Çok sayıda IVF durumunu düşünün. Örneğin, veri sayısı için IVF tarafından kabaca nicelleme yapılırsa, bu basit bir tükenmez arama ile aynıdır ve verimsizdir.
90
+ 1M veya daha az için IVF değerleri, N veri noktaları için 4*sqrt(N) ~ 16*sqrt(N) arasında tavsiye edilir.
91
+
92
+ Hesaplama süresi n_probes sayısına orantılı olarak arttığından, doğrulukla danışmanlık yapın ve uygun şekilde seçin. Kişisel olarak, RVC'nin bu kadar doğruluk gerektirmediğini düşünüyorum, bu nedenle n_probe = 1 uygundur.
93
+
94
+ ## FastScan
95
+ FastScan, bunları kaydedicilerde gerçekleştirerek onları Kartez ürünü nicelleme ile hızlı yaklaşık mesafe sağlayan bir yöntemdir.
96
+ Kartez ürünü nicelleme öğrenme sırasında her d boyut için (genellikle d = 2) kümeleme yapar, küme merkezlerini önceden hesaplar ve küme merkezleri arasındaki mesafeyi hesaplar ve bir arama tablosu oluşturur. Tahmin yaparken, her boyutun mesafesi arama tablosuna bakarak O(1) hesaplanabilir.
97
+ PQ sonrası belirttiğiniz sayı genellikle vektörün yarısı olan boyutu belirtir.
98
+
99
+ FastScan hakkında daha ayrıntılı açıklama için lütfen resmi belgelere başvurun.
100
+ https://github.com/facebookresearch/faiss/wiki/Fast-accumulation-of-PQ-and-AQ-codes-(FastScan)
101
+
102
+ ## RFlat
103
+ RFlat, FastScan ile hesaplanan kesirli mesafeyi indeks fabrikasının üçüncü argümanı tarafından belirtilen doğru mesafe ile yeniden hesaplamak için bir talimattır.
104
+ k komşuları alırken, k*k_factor nokta yeniden hesaplanır.
docs/tr/faq_tr.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Q1: FFmpeg Hatası/UTF8 Hatası
2
+ Büyük olasılıkla bu bir FFmpeg sorunu değil, daha çok ses dosyası yolunda bir sorun;
3
+
4
+ FFmpeg, boşluklar ve () gibi özel karakterler içeren yolları okurken bir hata ile karşılaşabilir; ve eğitim setinin ses dosyaları Çin karakterleri içeriyorsa, bunlar filelist.txt'ye yazıldığında utf8 hatasına neden olabilir.<br>
5
+
6
+ ## Q2: "Tek Tıklamayla Eğitim" Sonrası İndeks Dosyası Bulunamıyor
7
+ Eğer "Eğitim tamamlandı. Program kapatıldı." mesajını görüyorsa, model başarıyla eğitilmiş demektir ve sonraki hatalar sahte;
8
+
9
+ "Added" dizini oluşturulduğu halde "Tek Tıklamayla Eğitim" sonrası indeks dosyası bulunamıyorsa, bu genellikle eğitim setinin çok büyük olmasından kaynaklanabilir ve indeksin eklenmesi sıkışabilir. Bu sorun indeks eklerken bellek yükünü azaltmak için toplu işlem yaparak çözülmüştür. Geçici bir çözüm olarak, "Eğitim İndeksini Eğit" düğmesine tekrar tıklamayı deneyin.<br>
10
+
11
+ ## Q3: Eğitim Sonrası "Tonlama İnceleniyor" Bölümünde Model Bulunamıyor
12
+ "Lanetleme İstemi Listesini Yenile" düğmesine tıklayarak tekrar kontrol edin; hala görünmüyorsa, eğitim sırasında herhangi bir hata olup olmadığını kontrol edin ve geliştiricilere daha fazla analiz için konsol, web arayüzü ve logs/experiment_name/*.log ekran görüntülerini gönderin.<br>
13
+
14
+ ## Q4: Bir Model Nasıl Paylaşılır/Başkalarının Modelleri Nasıl Kullanılır?
15
+ rvc_root/logs/experiment_name dizininde saklanan pth dosyaları paylaşım veya çıkarım için değildir, bunlar deney checkpoint'larıdır ve çoğaltılabilirlik ve daha fazla eğitim için saklanır. Paylaşılacak olan model, weights klasöründeki 60+MB'lık pth dosyası olmalıdır;
16
+
17
+ Gelecekte, weights/exp_name.pth ve logs/exp_name/added_xxx.index birleştirilerek tek bir weights/exp_name.zip dosyasına dönüştürülecek ve manuel indeks girişi gereksinimini ortadan kaldıracaktır; bu nedenle pth dosyasını değil, farklı bir makinede eğitime devam etmek istemezseniz zip dosyasını paylaşın;
18
+
19
+ Çıkarılmış modelleri zorlama çıkarım için logs klasöründen weights klasörüne birkaç yüz MB'lık pth dosyalarını kopyalamak/paylaşmak, eksik f0, tgt_sr veya diğer anahtarlar gibi hatalara neden olabilir. Smaller modeli manuel veya otomatik olarak çıkarmak için alttaki ckpt sekmesini kullanmanız gerekmektedir (eğer bilgi logs/exp_name içinde bulunuyorsa), pitch bilgisini ve hedef ses örnekleme oranı seçeneklerini seçmeli ve ardından daha küçük modele çıkarmalısınız. Çıkardıktan sonra weights klasöründe 60+ MB'lık bir pth dosyası olacaktır ve sesleri yeniden güncelleyebilirsiniz.<br>
20
+
21
+ ## Q5: Bağlantı Hatası
22
+ Büyük ihtimalle konsolu (siyah komut satırı penceresi) kapatmış olabilirsiniz.<br>
23
+
24
+ ## Q6: Web Arayüzünde 'Beklenen Değer: Satır 1 Sütun 1 (Karakter 0)' Hatası
25
+ Lütfen sistem LAN proxy/global proxy'sini devre dışı bırakın ve ardından sayfayı yenileyin.<br>
26
+
27
+ ## Q7: WebUI Olmadan Nasıl Eğitim Yapılır ve Tahmin Yapılır?
28
+ Eğitim komut dosyası:<br>
29
+ Önce WebUI'de eğitimi çalıştırabilirsiniz, ardından veri seti önişleme ve eğitiminin komut satırı sürümleri mesaj penceresinde görüntülenecektir.<br>
30
+
31
+ Tahmin komut dosyası:<br>
32
+ https://huggingface.co/lj1995/VoiceConversionWebUI/blob/main/myinfer.py<br>
33
+
34
+
35
+ örn:<br>
36
+
37
+ runtime\python.exe myinfer.py 0 "E:\codes\py39\RVC-beta\todo-songs\1111.wav" "E:\codes\py39\logs\mi-test\added_IVF677_Flat_nprobe_7.index" harvest "test.wav" "weights/mi-test.pth" 0.6 cuda:0 True<br>
38
+
39
+
40
+ f0up_key=sys.argv[1]<br>
41
+ input_path=sys.argv[2]<br>
42
+ index_path=sys.argv[3]<br>
43
+ f0method=sys.argv[4]#harvest or pm<br>
44
+ opt_path=sys.argv[5]<br>
45
+ model_path=sys.argv[6]<br>
46
+ index_rate=float(sys.argv[7])<br>
47
+ device=sys.argv[8]<br>
48
+ is_half=bool(sys.argv[9])<br>
49
+
50
+ ## Q8: Cuda Hatası/Cuda Bellek Yetersizliği
51
+ Küçük bir ihtimalle CUDA konfigürasyonunda bir problem olabilir veya cihaz desteklenmiyor olabilir; daha muhtemel olarak yetersiz bellek olabilir (bellek yetersizliği).<br>
52
+
53
+ Eğitim için toplu işlem boyutunu azaltın (1'e indirgemek yeterli değilse, grafik kartını değiştirmeniz gerekebilir); çıkarım için ise config.py dosyasındaki x_pad, x_query, x_center ve x_max ayarlarını ihtiyaca göre düzenleyin. 4GB veya daha düşük bellekli kartlar (örneğin 1060(3G) ve çeşit
54
+
55
+ li 2GB kartlar) terk edilebilir, 4GB bellekli kartlar hala bir şansı vardır.<br>
56
+
57
+ ## Q9: Optimal Olarak Kaç total_epoch Gerekli?
58
+ Eğitim veri setinin ses kalitesi düşük ve gürültü seviyesi yüksekse, 20-30 dönem yeterlidir. Fazla yüksek bir değer belirlemek, düşük kaliteli eğitim setinizin ses kalitesini artırmaz.<br>
59
+
60
+ Eğitim setinin ses kalitesi yüksek, gürültü seviyesi düşük ve yeterli süre varsa, bu değeri artırabilirsiniz. 200 kabul edilebilir bir değerdir (çünkü eğitim hızlıdır ve yüksek kaliteli bir eğitim seti hazırlayabiliyorsanız, GPU'nuz muhtemelen uzun bir eğitim süresini sorunsuz bir şekilde yönetebilir).<br>
61
+
62
+ ## Q10: Kaç Dakika Eğitim Verisi Süresi Gerekli?
63
+
64
+ 10 ila 50 dakika arası bir veri seti önerilir.<br>
65
+
66
+ Garantili yüksek ses kalitesi ve düşük arka plan gürültüsü varsa, veri setinin tonlaması homojen ise daha fazlası eklenebilir.<br>
67
+
68
+ Yüksek seviyede bir eğitim seti (zarif ve belirgin tonlama), 5 ila 10 dakika arası uygundur.<br>
69
+
70
+ 1 ila 2 dakika veri ile başarılı bir şekilde eğitim yapan bazı insanlar olsa da, başarı diğerleri tarafından tekrarlanabilir değil ve çok bilgilendirici değil. Bu, eğitim setinin çok belirgin bir tonlamaya sahip olmasını (örneğin yüksek frekansta havadar bir anime kız sesi gibi) ve ses kalitesinin yüksek olmasını gerektirir; 1 dakikadan daha kısa süreli veri denenmemiştir ve önerilmez.<br>
71
+
72
+
73
+ ## Q11: İndeks Oranı Nedir ve Nasıl Ayarlanır?
74
+ Eğer önceden eğitilmiş model ve tahmin kaynağının ton kalitesi, eğitim setinden daha yüksekse, tahmin sonucunun ton kalitesini yükseltebilirler, ancak altta yatan modelin/tahmin kaynağının tonu yerine eğitim setinin tonuna yönelik olası bir ton önyargısıyla sonuçlanır, bu genellikle "ton sızıntısı" olarak adlandırılır.<br>
75
+
76
+ İndeks oranı, ton sızıntı sorununu azaltmak/çözmek için kullanılır. İndeks oranı 1 olarak ayarlandığında, teorik olarak tahmin kaynağından ton sızıntısı olmaz ve ton kalitesi daha çok eğitim setine yönelik olur. Eğer eğitim seti, tahmin kaynağından daha düşük ses kalitesine sahipse, daha yüksek bir indeks oranı ses kalitesini azaltabilir. Oranı 0'a düşürmek, eğitim seti tonlarını korumak için getirme karıştırmasını kullanmanın etkisine sahip değildir.<br>
77
+
78
+ Eğer eğitim seti iyi ses kalitesine ve uzun süreye sahipse, total_epoch'u artırın. Model, tahmin kaynağına ve önceden eğitilmiş alt modeline daha az başvurduğunda ve "ton sızıntısı" daha az olduğunda, indeks oranı önemli değil ve hatta indeks dosyası oluşturmak/paylaşmak gerekli değildir.<br>
79
+
80
+ ## Q12: Tahmin Yaparken Hangi GPU'yu Seçmeli?
81
+ config.py dosyasında "device cuda:" ardından kart numarasını seçin.<br>
82
+
83
+ Kart numarası ile grafik kartı arasındaki eşleme, eğitim sekmesinin grafik kartı bilgileri bölümünde görülebilir.<br>
84
+
85
+ ## Q13: Eğitimin Ortasında Kaydedilen Model Nasıl Kullanılır?
86
+ Kaydetme işlemini ckpt işleme sekmesinin altında yer alan model çıkarımı ile yapabilirsiniz.
87
+
88
+ ## Q14: Dosya/Bellek Hatası (Eğitim Sırasında)?
89
+ Çok fazla işlem ve yetersiz bellek olabilir. Bu sorunu düzeltebilirsiniz:
90
+
91
+ 1. "CPU İş Parçacıkları" alanındaki girişi azaltarak.
92
+
93
+ 2. Eğitim verisini daha kısa ses dosyalarına önceden keserek.
94
+
95
+ ## Q15: Daha Fazla Veri Kullanarak Eğitime Nasıl Devam Edilir?
96
+
97
+ Adım 1: Tüm wav verilerini path2 dizinine yerleştirin.
98
+
99
+ Adım 2: exp_name2+path2 -> veri setini önişleme ve özellik çıkarma.
100
+
101
+ Adım 3: exp_name1 (önceki deneyinizin) en son G ve D dosyalarını exp_name2 klasörüne kopyalayın.
102
+
103
+ Adım 4: "modeli eğit" düğmesine tıklayın ve önceki deneyinizin model döneminden başlayarak eğitime devam edecektir.
docs/tr/training_tips_tr.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## RVC Eğitimi için Talimatlar ve İpuçları
2
+ ======================================
3
+ Bu TALİMAT, veri eğitiminin nasıl yapıldığını açıklamaktadır.
4
+
5
+ # Eğitim Akışı
6
+ Eğitim sekmesindeki adımları takip ederek açıklayacağım.
7
+
8
+ ## Adım 1
9
+ Deney adını burada belirleyin.
10
+
11
+ Ayrıca burada modelin pitch'i dikkate alıp almayacağını da belirleyebilirsiniz.
12
+ Eğer model pitch'i dikkate almazsa, model daha hafif olacak, ancak şarkı söyleme için uygun olmayacaktır.
13
+
14
+ Her deney için veriler `/logs/your-experiment-name/` dizinine yerleştirilir.
15
+
16
+ ## Adım 2a
17
+ Ses yüklenir ve ön işleme yapılır.
18
+
19
+ ### Ses Yükleme
20
+ Ses içeren bir klasör belirtirseniz, bu klasördeki ses dosyaları otomatik olarak okunur.
21
+ Örneğin, `C:Users\hoge\voices` belirtirseniz, `C:Users\hoge\voices\voice.mp3` yüklenecek, ancak `C:Users\hoge\voices\dir\voice.mp3` yüklenmeyecektir.
22
+
23
+ Ses okumak için dahili olarak ffmpeg kullanıldığından, uzantı ffmpeg tarafından destekleniyorsa otomatik olarak okunacaktır.
24
+ ffmpeg ile int16'ya dönüştürüldükten sonra float32'ye dönüştürülüp -1 ile 1 arasında normalize edilir.
25
+
26
+ ### Gürültü Temizleme
27
+ Ses scipy'nin filtfilt işlevi ile yumuşatılır.
28
+
29
+ ### Ses Ayırma
30
+ İlk olarak, giriş sesi belirli bir süreden (max_sil_kept=5 saniye?) daha uzun süren sessiz kısımları tespit ederek böler. Sessizlik üzerinde ses bölündükten sonra sesi 4 saniyede bir 0.3 saniyelik bir örtüşme ile böler. 4 saniye içinde ayrılan sesler için ses normalleştirildikten sonra wav dosyası olarak `/logs/your-experiment-name/0_gt_wavs`'a, ardından 16 kHz örnekleme hızına dönüştürülerek `/logs/your-experiment-name/1_16k_wavs` olarak kaydedilir.
31
+
32
+ ## Adım 2b
33
+ ### Pitch Çıkarımı
34
+ Wav dosyalarından pitch bilgisi çıkarılır. ParSelMouth veya PyWorld'e dahili olarak yerleştirilmiş yöntemi kullanarak pitch bilgisi (=f0) çıkarılır ve `/logs/your-experiment-name/2a_f0` dizinine kaydedilir. Ardından pitch bilgisi logaritmik olarak 1 ile 255 arasında bir tamsayıya dönüştürülüp `/logs/your-experiment-name/2b-f0nsf` dizinine kaydedilir.
35
+
36
+ ### Özellik Çıkarımı
37
+ HuBERT'i kullanarak önceden gömme olarak wav dosyasını çıkarır. `/logs/your-experiment-name/1_16k_wavs`'a kaydedilen wav dosyasını okuyarak, wav dosyasını 256 boyutlu HuBERT özelliklerine dönüştürür ve npy formatında `/logs/your-experiment-name/3_feature256` dizinine kaydeder.
38
+
39
+ ## Adım 3
40
+ Modeli eğit.
41
+ ### Başlangıç Seviyesi Sözlüğü
42
+ Derin öğrenmede, veri kümesi bölmeye ve öğrenmeye adım adım devam eder. Bir model güncellemesinde (adım), batch_size veri alınır ve tahminler ve hata düzeltmeleri yapılır. Bunun bir defa bir veri kümesi için yapılması bir dönem olarak sayılır.
43
+
44
+ Bu nedenle, öğrenme zamanı adım başına öğrenme zamanı x (veri kümesindeki veri sayısı / batch boyutu) x dönem sayısıdır. Genel olarak, batch boyutu ne kadar büyükse, öğrenme daha istikrarlı hale gelir (adım başına öğrenme süresi ÷ batch boyutu) küçülür, ancak daha fazla GPU belleği kullanır. GPU RAM'ı nvidia-smi komutu ile kontrol edilebilir. Çalışma ortamının makinesine göre batch boyutunu mümkün olduğunca artırarak öğrenme süresini kısa sürede yapabilirsiniz.
45
+
46
+ ### Önceden Eğitilmiş Modeli Belirtme
47
+ RVC, modeli 0'dan değil önceden eğitilmiş ağırlıklardan başlatarak eğitir, bu nedenle küçük bir veri kümesi ile eğitilebilir.
48
+
49
+ Varsayılan olarak
50
+
51
+ - Eğer pitch'i dikkate alıyorsanız, `rvc-location/pretrained/f0G40k.pth` ve `rvc-location/pretrained/f0D40k.pth` yüklenir.
52
+ - Eğer pitch'i dikkate almıyorsanız, yine `rvc-location/pretrained/f0G40k.pth` ve `rvc-location/pretrained/f0D40k.pth` yüklenir.
53
+
54
+ Öğrenirken model parametreleri her save_every_epoch için `logs/your-experiment-name/G_{}.pth` ve `logs/your-experiment-name/D_{}.pth` olarak kaydedilir, ancak bu yolu belirterek öğrenmeye başlayabilirsiniz. Farklı bir deneyde öğrenilen model ağırlıklarından öğrenmeye yeniden başlayabilir veya eğitimi başlatabilirsiniz.
55
+
56
+ ### Öğrenme İndeksi
57
+ RVC, eğitim sırasında kullanılan HuBERT özellik değerlerini kaydeder ve çıkarım sırasında, öğrenme sırasında kullanılan özellik değerlerine benzer özellik değerlerini arayarak çıkarım yapar. Bu aramayı yüksek hızda gerçekleştirebilmek için indeks öğrenilir.
58
+ İndeks öğrenimi için yaklaş
59
+
60
+ ık komşuluk arama kütüphanesi faiss kullanılır. `/logs/your-experiment-name/3_feature256`'daki özellik değerini okur ve indeksi öğrenmek için kullanır, `logs/your-experiment-name/add_XXX.index` olarak kaydedilir.
61
+
62
+ (20230428 güncelleme sürümünden itibaren indeks okunur ve kaydetmek/belirtmek artık gerekli değildir.)
63
+
64
+ ### Düğme Açıklaması
65
+ - Modeli Eğit: Adım 2b'yi çalıştırdıktan sonra, modeli eğitmek için bu düğmeye basın.
66
+ - Özellik İndeksini Eğit: Modeli eğittikten sonra, indeks öğrenme işlemi yapın.
67
+ - Tek Tıklamayla Eğitim: Adım 2b, model eğitimi ve özellik indeks eğitimini bir arada yapar.