You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: make english README the repository's default README (#38)
* docs: make english README the repository's default README
some people might be scared off by a base README being in Chinese, so using a more universally known language like English seems to be more suited for open-source projects. i believe some people just come to the project, see the README and then they're frightened to even work on/with it
this is a change curated by the #33 issue
* docs: use MIT badge directly instead of relying on the repo link
* docs: make READMEs grab the license badge directly via repo's specified license
> 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.
> 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.
|You can freely choose the action you want to perform. | 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. |
+ Reduce tone leakage by replacing the source feature to training-set feature using top1 retrieval;
38
+
+Easy + fast training, even on poor graphics cards;
39
+
+Training with a small amounts of data (>=10min low noise speech recommended);
40
+
+Model fusion to change timbres (using ckpt processing tab->ckpt merge);
41
+
+Easy-to-use WebUI;
42
+
+UVR5 model to quickly separate vocals and instruments;
43
+
+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;
44
+
+AMD/Intel graphics cards acceleration supported;
45
+
+Intel ARC graphics cards acceleration with IPEX supported.
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.
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.
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`.
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).
168
169
169
-
若你使用的是Arch Linux,可以使用pacman来安装所需驱动:
170
+
If you are using Arch Linux, you can use pacman to install the required drivers.
170
171
````
171
172
pacman -S rocm-hip-sdk rocm-opencl-sdk
172
173
````
173
-
对于某些型号的显卡,你可能需要额外配置如下的环境变量(如:RX6700XT):
174
+
For some models of graphics cards, you may need to configure the following environment variables (such as: RX6700XT).
174
175
````
175
176
export ROCM_PATH=/opt/rocm
176
177
export HSA_OVERRIDE_GFX_VERSION=10.3.0
177
178
````
178
-
同时确保你的当前用户处于`render`与`video`用户组内:
179
+
Also, make sure your current user is in the `render` and `video` user groups.
179
180
````
180
181
sudo usermod -aG render $USERNAME
181
182
sudo usermod -aG video $USERNAME
182
183
````
183
-
184
-
## 开始使用
185
-
### 直接启动
186
-
使用以下指令来启动 WebUI
184
+
## Getting Started
185
+
### Direct Launch
186
+
Use the following command to start the WebUI.
187
187
```bash
188
188
python web.py
189
189
```
190
-
### Linux/MacOS 用户
190
+
### Linux/MacOS
191
191
```bash
192
192
./run.sh
193
193
```
194
-
### 对于需要使用IPEX技术的I卡用户(仅Linux)
194
+
### For I-card users who need to use IPEX technology (Linux only)
195
195
```bash
196
196
source /opt/intel/oneapi/setvars.sh
197
197
./run.sh
198
198
```
199
-
### 使用整合包 (Windows 用户)
200
-
下载并解压`RVC-beta.7z`,解压后双击`go-web.bat`即可一键启动。
199
+
### Using the Integration Package (Windows Users)
200
+
Download and unzip `RVC-beta.7z`. After unzipping, double-click `go-web.bat` to start the program with one click.
0 commit comments