Update README.md
Browse files
README.md
CHANGED
@@ -12,12 +12,10 @@ pipeline_tag: text-to-speech
|
|
12 |
# Parler-TTS v0.1
|
13 |
|
14 |
|
15 |
-
Parler-TTS v0.1 is a lightweight text-to-speech (TTS) model, trained on 10.5K hours of audio data, that can generate high-quality, natural sounding speech with features that can be controlled using a simple text prompt (e.g. gender, background noise, speaking rate, pitch and reverberation)
|
16 |
|
17 |
## Usage
|
18 |
|
19 |
-
**NOTE:** You can directly try it out in an interactive demo [here](https://huggingface.co/spaces/parler-tts/parler_tts_mini)!
|
20 |
-
|
21 |
Using Parler-TTS is as simple as "bonjour". Simply install the library once:
|
22 |
```sh
|
23 |
pip install git+https://github.com/huggingface/parler-tts.git
|
@@ -44,6 +42,9 @@ audio_arr = generation.cpu().numpy().squeeze()
|
|
44 |
sf.write("parler_tts_out.wav", audio_arr, model.config.sampling_rate)
|
45 |
```
|
46 |
|
|
|
|
|
|
|
47 |
**Tips**:
|
48 |
* Include the term "very clear audio" to generate the highest quality audio, and "very noisy audio" for high levels of background noise
|
49 |
* * Punctuation can be used to control the prosody of the generations, e.g. use commas to add small breaks in speech
|
|
|
12 |
# Parler-TTS v0.1
|
13 |
|
14 |
|
15 |
+
**Parler-TTS v0.1** is a lightweight text-to-speech (TTS) model, trained on 10.5K hours of audio data, that can generate high-quality, natural sounding speech with features that can be controlled using a simple text prompt (e.g. gender, background noise, speaking rate, pitch and reverberation)
|
16 |
|
17 |
## Usage
|
18 |
|
|
|
|
|
19 |
Using Parler-TTS is as simple as "bonjour". Simply install the library once:
|
20 |
```sh
|
21 |
pip install git+https://github.com/huggingface/parler-tts.git
|
|
|
42 |
sf.write("parler_tts_out.wav", audio_arr, model.config.sampling_rate)
|
43 |
```
|
44 |
|
45 |
+
**NOTE:** You can directly try it out in an interactive demo [here](https://huggingface.co/spaces/parler-tts/parler_tts_mini)!
|
46 |
+
|
47 |
+
|
48 |
**Tips**:
|
49 |
* Include the term "very clear audio" to generate the highest quality audio, and "very noisy audio" for high levels of background noise
|
50 |
* * Punctuation can be used to control the prosody of the generations, e.g. use commas to add small breaks in speech
|