Skip to content

Commit d41a009

Browse files
committed
add final modif 300M to Mini or 600M
1 parent 256ee0e commit d41a009

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Contrarily to other TTS models, Parler-TTS is a **fully open-source** release. A
77
This repository contains the inference and training code for Parler-TTS. It is designed to accompany the [Data-Speech](https://github.com/huggingface/dataspeech) repository for dataset annotation.
88

99
> [!IMPORTANT]
10-
> We're proud to release Parler-TTS v0.1, our first 300M parameter model, trained on 10.5K hours of audio data.
10+
> We're proud to release [Parler-TTS Mini v0.1](https://huggingface.co/parler-tts/parler_tts_mini_v0.1), our first 600M parameter model, trained on 10.5K hours of audio data.
1111
> In the coming weeks, we'll be working on scaling up to 50k hours of data, in preparation for the v1 model.
1212
1313
## 📖 Quick Index
@@ -63,7 +63,7 @@ The [training folder](/training/) contains all the information to train or fine-
6363
- [3. A training guide](/training/README.md#3-training)
6464

6565
> [!IMPORTANT]
66-
> **TL;DR:** After having followed the [installation steps](/training/README.md#requirements), you can reproduce the Parler-TTS v0.1 training recipe with the following command line:
66+
> **TL;DR:** After having followed the [installation steps](/training/README.md#requirements), you can reproduce the Parler-TTS Mini v0.1 training recipe with the following command line:
6767
6868
```sh
6969
accelerate launch ./training/run_parler_tts_training.py ./helpers/training_configs/starting_point_0.01.json

training/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Training Parler-TTS
22

3-
**TL;DR:** After having followed the [installation steps](#requirements), you can reproduce the Parler-TTS v0.1 training recipe with the following command line:
3+
**TL;DR:** After having followed the [installation steps](#requirements), you can reproduce the [Parler-TTS Mini v0.1](https://huggingface.co/parler-tts/parler_tts_mini_v0.1) training recipe with the following command line:
44

55
```sh
66
accelerate launch ./training/run_parler_tts_training.py ./helpers/training_configs/starting_point_0.01.json
@@ -79,7 +79,7 @@ You can also train you own model from scratch. You can find [here](/helpers/mode
7979
python helpers/model_init_scripts/init_dummy_model.py ./parler-tts-untrained-dummy --text_model "google-t5/t5-small" --audio_model "parler-tts/dac_44khZ_8kbps"
8080
```
8181

82-
In the rest of this guide, and to reproduce the Parler-TTS v0.1 training recipe, we'll use a 600-M parameters model that we'll initialize with:
82+
In the rest of this guide, and to reproduce the Parler-TTS Mini v0.1 training recipe, we'll use a 600M parameters model that we'll initialize with:
8383

8484
```sh
8585
python helpers/model_init_scripts/init_model_600M.py ./parler-tts-untrained-600M --text_model "google/flan-t5-base" --audio_model "parler-tts/dac_44khZ_8kbps"
@@ -95,7 +95,7 @@ To train your own Parler-TTS, you need datasets with 3 main features:
9595

9696
Note that we made the choice to use description of the main speech characteristics (speaker pitch, speaking rate, level of noise, etc.) but that you are free to use any handmade or generated text description that makes sense.
9797

98-
To train Parler-TTS v0.1, we used:
98+
To train Parler-TTS Mini v0.1, we used:
9999
* The full [LibriTTS-R dataset](https://huggingface.co/datasets/blabble-io/libritts_r), a 1K hours high-quality speech dataset.
100100
* A [10K hours subset](https://huggingface.co/datasets/parler-tts/mls_eng_10k) of [Multilingual LibriSpeech](https://huggingface.co/datasets/facebook/multilingual_librispeech).
101101

@@ -109,7 +109,7 @@ The script [`run_parler_tts_training.py`](/training/run_parler_tts_training.py)
109109
2. pre-compute audio tokens
110110
3. train Parler-TTS
111111

112-
To train Parler-TTS v0.1, we roughly used:
112+
To train Parler-TTS Mini v0.1, we roughly used:
113113

114114
```sh
115115
accelerate launch ./training/run_parler_tts_training.py \

0 commit comments

Comments
 (0)