Commit
·
45a1c50
1
Parent(s):
e15fe5a
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
# Amphion Text-to-Audio Pretrained Models
|
6 |
+
|
7 |
+
We provide the following pretrained checkpoints for you to use, specifically:
|
8 |
+
|
9 |
+
Two [AudioLDM](https://github.com/open-mmlab/Amphion/tree/main/egs/tta/audioldm) pretrained checkpoints with corresponding [AutoencoderKL](https://github.com/open-mmlab/Amphion/tree/main/egs/tta/autoencoderkl) checkpoints trained on AudioCaps.
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
## Quick Start
|
14 |
+
|
15 |
+
To utilize the pretrained models, just run the following commands:
|
16 |
+
|
17 |
+
### Step1: Download the checkpoint
|
18 |
+
```bash
|
19 |
+
git lfs install
|
20 |
+
git clone https://huggingface.co/amphion/text_to_audio
|
21 |
+
```
|
22 |
+
|
23 |
+
### Step2: Clone the Amphion's Source Code of GitHub
|
24 |
+
```bash
|
25 |
+
git clone https://github.com/open-mmlab/Amphion.git
|
26 |
+
```
|
27 |
+
|
28 |
+
### Step3: Specify the checkpoint's path
|
29 |
+
Use the soft link to specify the downloaded checkpoint in the first step:
|
30 |
+
|
31 |
+
```bash
|
32 |
+
cd Amphion
|
33 |
+
mkdir -p ckpts
|
34 |
+
ln -s ../../../text_to_speech/tta ckpts/
|
35 |
+
|
36 |
+
### Step4: Inference
|
37 |
+
|
38 |
+
You can follow the inference part of [this recipe](https://github.com/open-mmlab/Amphion/tree/main/egs/tta/RECIPE.md) to generate audio from text.
|
39 |
+
|