Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
# Pretrained Model of Amphion FastSpeech 2
|
| 6 |
+
|
| 7 |
+
We provide the pre-trained checkpoint of [FastSpeech 2](https://github.com/open-mmlab/Amphion/tree/main/egs/tts/FastSpeech2) trained on LJSpeech, which consists of 13,100 short audio clips of a single speaker and have a total length of approximately 24 hours.
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
## Quick Start
|
| 12 |
+
|
| 13 |
+
To utilize the pre-trained models, just run the following commands:
|
| 14 |
+
|
| 15 |
+
### Step1: Download the checkpoint
|
| 16 |
+
```bash
|
| 17 |
+
git lfs install
|
| 18 |
+
git clone https://huggingface.co/amphion/fastspeech2_ljspeech
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
### Step2: Clone the Amphion's Source Code of GitHub
|
| 22 |
+
```bash
|
| 23 |
+
git clone https://github.com/open-mmlab/Amphion.git
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
### Step3: Specify the checkpoint's path
|
| 27 |
+
Use the soft link to specify the downloaded checkpoint in the first step:
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
cd Amphion
|
| 31 |
+
mkdir -p ckpts/tts
|
| 32 |
+
ln -s ../../../fastspeech2_ljspeech ckpts/tts/
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### Step4: Inference
|
| 36 |
+
|
| 37 |
+
You can follow the inference part of [this recipe](https://github.com/open-mmlab/Amphion/tree/main/egs/tts/FastSpeech2#4-inference) to generate speech from text. For example, if you want to synthesize a clip of speech with the text of "This is a clip of generated speech with the given text from a TTS model.", just, run:
|
| 38 |
+
|
| 39 |
+
```bash
|
| 40 |
+
|
| 41 |
+
sh egs/tts/FastSpeech2/run.sh --stage 3 \
|
| 42 |
+
--config ckpts/tts/fastspeech2_ljspeech/args.json \
|
| 43 |
+
--infer_expt_dir ckpts/tts/fastspeech2_ljspeech/ \
|
| 44 |
+
--infer_output_dir ckpts/tts/fastspeech2_ljspeech/results \
|
| 45 |
+
--infer_mode "single" \
|
| 46 |
+
--infer_text "This is a clip of generated speech with the given text from a TTS model." \
|
| 47 |
+
--vocoder_dir ckpts/vocoder/hifigan_ljspeech/checkpoints/ \
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
**\*Noted**: Inference FastSpeech 2 requires a vocoder to reconstruct waveform from Mel spectrogram. The pre-trained Amphion HiFi-GAN Vocoder that matches this Amphion FastSpeech 2 can be download [here](https://huggingface.co/amphion/hifigan_ljspeech).
|