Hecheng0625
commited on
Commit
·
767d943
1
Parent(s):
379d758
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
# Pretrained Model of Amphion NaturalSpeech2
|
6 |
+
|
7 |
+
We provide the pre-trained checkpoint of [NaturalSpeech2](https://github.com/open-mmlab/Amphion/tree/main/egs/tts/NaturalSpeech2) trained on [LibriTTS](https://github.com/open-mmlab/Amphion/tree/main/egs/datasets#libritts), which is is a multi-speaker English corpus of approximately 585 hours of read English speech at 24kHz.
|
8 |
+
|
9 |
+
|
10 |
+
## Quick Start
|
11 |
+
|
12 |
+
To utilize the pretrained models, just run the following commands:
|
13 |
+
|
14 |
+
### Step1: Download the checkpoint
|
15 |
+
```bash
|
16 |
+
git lfs install
|
17 |
+
git clone https://huggingface.co/amphion/naturalspeech2_libritts
|
18 |
+
```
|
19 |
+
|
20 |
+
### Step2: Clone the Amphion's Source Code of GitHub
|
21 |
+
```bash
|
22 |
+
git clone https://github.com/open-mmlab/Amphion.git
|
23 |
+
```
|
24 |
+
|
25 |
+
### Step3: Specify the checkpoint's path
|
26 |
+
Use the soft link to specify the downloaded checkpoint in the first step:
|
27 |
+
|
28 |
+
```bash
|
29 |
+
cd Amphion
|
30 |
+
mkdir -p ckpts
|
31 |
+
ln -s ../../../naturalspeech2_libritts ckpts/tts/
|
32 |
+
```
|
33 |
+
|
34 |
+
### Step4: Inference
|
35 |
+
|
36 |
+
You can follow the inference part of [this recipe](https://github.com/open-mmlab/Amphion/tree/main/egs/tts/NaturalSpeech2/README.md) to generate speech from text.
|
37 |
+
|
38 |
+
We also provided an online [demo](https://huggingface.co/spaces/amphion/NaturalSpeech2), feel free to try it!
|