Aririgi commited on
Commit ·
4aae2e0
1
Parent(s): 1a634bd
update readme
Browse files- README.md +72 -1
- so-vits-svc/README.md +0 -74
README.md
CHANGED
|
@@ -1,3 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
| 1 |
+
# SpeechModel 语音模型
|
| 2 |
+
|
| 3 |
+
English | [简体中文](#简体中文)
|
| 4 |
+
|
| 5 |
+
## English
|
| 6 |
+
|
| 7 |
+
This repository, named "SpeechModel", is dedicated to storing audio algorithm-related models. The corresponding codebases can be found in separate repositories.
|
| 8 |
+
|
| 9 |
+
The project structure is as follows:
|
| 10 |
+
```
|
| 11 |
+
├── so-vits-svc
|
| 12 |
+
│ ├── araragi
|
| 13 |
+
│ ├── base
|
| 14 |
+
│ ├── haoyami_saori
|
| 15 |
+
│ ├── senjougahara
|
| 16 |
+
│ ├── smalljin
|
| 17 |
+
│ ├── sunyanzi
|
| 18 |
+
│ └── zoe_araragi_v1
|
| 19 |
+
└── vits
|
| 20 |
+
├── C
|
| 21 |
+
│ └── aishell3
|
| 22 |
+
├── CJ
|
| 23 |
+
│ ├── hayami_saori
|
| 24 |
+
│ └── oshino_shinobu
|
| 25 |
+
└── CJE
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
### so-vits-svc
|
| 29 |
+
|
| 30 |
+
This directory contains models for voice conversion, originating from the project [so-vits-svc](https://github.com/svc-develop-team/so-vits-svc). Each sub-directory represents a model for a specific speaker.
|
| 31 |
+
|
| 32 |
+
### vits
|
| 33 |
+
|
| 34 |
+
This directory contains models for Text-to-Speech (TTS) from the project [VITS](https://github.com/Plachtaa/VITS-fast-fine-tuning). The sub-directories 'C', 'CJ', and 'CJE' respectively represent models for Chinese, Chinese-Japanese, and Chinese-Japanese-English.
|
| 35 |
+
|
| 36 |
---
|
| 37 |
+
|
| 38 |
+
## 简体中文
|
| 39 |
+
|
| 40 |
+
该仓库名为"SpeechModel",专用于存储音频算法相关模型。相应的代码库可以在单独的仓库中找到。
|
| 41 |
+
|
| 42 |
+
项目结构如下:
|
| 43 |
+
```
|
| 44 |
+
├── so-vits-svc
|
| 45 |
+
│ ├── araragi
|
| 46 |
+
│ ├── base
|
| 47 |
+
│ ├── haoyami_saori
|
| 48 |
+
│ ├── senjougahara
|
| 49 |
+
│ ├── smalljin
|
| 50 |
+
│ ├── sunyanzi
|
| 51 |
+
│ └── zoe_araragi_v1
|
| 52 |
+
└── vits
|
| 53 |
+
├── C
|
| 54 |
+
│ └── aishell3
|
| 55 |
+
├── CJ
|
| 56 |
+
│ ├── hayami_saori
|
| 57 |
+
│ └── oshino_shinobu
|
| 58 |
+
└── CJE
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
### so-vits-svc
|
| 63 |
+
|
| 64 |
+
该目录包含来自项目 [so-vits-svc](https://github.com/svc-develop-team/so-vits-svc) 的语音转换模型。每个子目录代表特定说话人的模型。
|
| 65 |
+
|
| 66 |
+
### vits
|
| 67 |
+
|
| 68 |
+
该目录包含来自项目 [VITS](https://github.com/Plachtaa/VITS-fast-fine-tuning) 的文本转语音(TTS)模型。子目录 'C', 'CJ', 和 'CJE' 分别代表中文、中日、中日英的模型。
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
---
|
| 73 |
+
license: mit
|
| 74 |
---
|
so-vits-svc/README.md
DELETED
|
@@ -1,74 +0,0 @@
|
|
| 1 |
-
# SpeechModel 语音模型
|
| 2 |
-
|
| 3 |
-
English | [简体中文](#简体中文)
|
| 4 |
-
|
| 5 |
-
## English
|
| 6 |
-
|
| 7 |
-
This repository, named "SpeechModel", is dedicated to storing audio algorithm-related models. The corresponding codebases can be found in separate repositories.
|
| 8 |
-
|
| 9 |
-
The project structure is as follows:
|
| 10 |
-
```
|
| 11 |
-
├── so-vits-svc
|
| 12 |
-
│ ├── araragi
|
| 13 |
-
│ ├── base
|
| 14 |
-
│ ├── haoyami_saori
|
| 15 |
-
│ ├── senjougahara
|
| 16 |
-
│ ├── smalljin
|
| 17 |
-
│ ├── sunyanzi
|
| 18 |
-
│ └── zoe_araragi_v1
|
| 19 |
-
└── vits
|
| 20 |
-
├── C
|
| 21 |
-
│ └── aishell3
|
| 22 |
-
├── CJ
|
| 23 |
-
│ ├── hayami_saori
|
| 24 |
-
│ └── oshino_shinobu
|
| 25 |
-
└── CJE
|
| 26 |
-
```
|
| 27 |
-
|
| 28 |
-
### so-vits-svc
|
| 29 |
-
|
| 30 |
-
This directory contains models for voice conversion, originating from the project [so-vits-svc](https://github.com/svc-develop-team/so-vits-svc). Each sub-directory represents a model for a specific speaker.
|
| 31 |
-
|
| 32 |
-
### vits
|
| 33 |
-
|
| 34 |
-
This directory contains models for Text-to-Speech (TTS) from the project [VITS](https://github.com/Plachtaa/VITS-fast-fine-tuning). The sub-directories 'C', 'CJ', and 'CJE' respectively represent models for Chinese, Chinese-Japanese, and Chinese-Japanese-English.
|
| 35 |
-
|
| 36 |
-
---
|
| 37 |
-
|
| 38 |
-
## 简体中文
|
| 39 |
-
|
| 40 |
-
该仓库名为"SpeechModel",专用于存储音频算法相关模型。相应的代码库可以在单独的仓库中找到。
|
| 41 |
-
|
| 42 |
-
项目结构如下:
|
| 43 |
-
```
|
| 44 |
-
├── so-vits-svc
|
| 45 |
-
│ ├── araragi
|
| 46 |
-
│ ├── base
|
| 47 |
-
│ ├── haoyami_saori
|
| 48 |
-
│ ├── senjougahara
|
| 49 |
-
│ ├── smalljin
|
| 50 |
-
│ ├── sunyanzi
|
| 51 |
-
│ └── zoe_araragi_v1
|
| 52 |
-
└── vits
|
| 53 |
-
├── C
|
| 54 |
-
│ └── aishell3
|
| 55 |
-
├── CJ
|
| 56 |
-
│ ├── hayami_saori
|
| 57 |
-
│ └── oshino_shinobu
|
| 58 |
-
└── CJE
|
| 59 |
-
```
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
### so-vits-svc
|
| 63 |
-
|
| 64 |
-
该目录包含来自项目 [so-vits-svc](https://github.com/svc-develop-team/so-vits-svc) 的语音转换模型。每个子目录代表特定说话人的模型。
|
| 65 |
-
|
| 66 |
-
### vits
|
| 67 |
-
|
| 68 |
-
该目录包含来自项目 [VITS](https://github.com/Plachtaa/VITS-fast-fine-tuning) 的文本转语音(TTS)模型。子目录 'C', 'CJ', 和 'CJE' 分别代表中文、中日、中日英的模型。
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
---
|
| 73 |
-
license: mit
|
| 74 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|