Update README.md
Browse files
README.md
CHANGED
|
@@ -51,10 +51,11 @@ Extensive evaluations show the superiority of the proposed SpeechT5 framework on
|
|
| 51 |
|
| 52 |
You can run SpeechT5 TTS locally with the 🤗 Transformers library.
|
| 53 |
|
| 54 |
-
1. First install the 🤗 [Transformers library](https://github.com/huggingface/transformers), sentencepiece and datasets(optional):
|
| 55 |
|
| 56 |
```
|
| 57 |
-
pip install
|
|
|
|
| 58 |
```
|
| 59 |
|
| 60 |
2. Run inference via the `Text-to-Speech` (TTS) pipeline. You can access the SpeechT5 model via the TTS pipeline in just a few lines of code!
|
|
|
|
| 51 |
|
| 52 |
You can run SpeechT5 TTS locally with the 🤗 Transformers library.
|
| 53 |
|
| 54 |
+
1. First install the 🤗 [Transformers library](https://github.com/huggingface/transformers), sentencepiece, soundfile and datasets(optional):
|
| 55 |
|
| 56 |
```
|
| 57 |
+
pip install --upgrade pip
|
| 58 |
+
pip install --upgrade transformers sentencepiece datasets[audio]
|
| 59 |
```
|
| 60 |
|
| 61 |
2. Run inference via the `Text-to-Speech` (TTS) pipeline. You can access the SpeechT5 model via the TTS pipeline in just a few lines of code!
|