Add missing import and add information on which pip packages are needed
#6
by
peterloll
- opened
README.md
CHANGED
@@ -30,7 +30,11 @@ Extensive evaluations show the superiority of the proposed SpeechT5 framework on
|
|
30 |
Use the code below to convert text into a mono 16 kHz speech waveform.
|
31 |
|
32 |
```python
|
|
|
|
|
|
|
33 |
from transformers import SpeechT5Processor, SpeechT5ForTextToSpeech, SpeechT5HifiGan
|
|
|
34 |
import torch
|
35 |
import soundfile as sf
|
36 |
|
|
|
30 |
Use the code below to convert text into a mono 16 kHz speech waveform.
|
31 |
|
32 |
```python
|
33 |
+
# Following pip packages need to be installed:
|
34 |
+
# !pip install git+https://github.com/huggingface/transformers sentencepiece datasets
|
35 |
+
|
36 |
from transformers import SpeechT5Processor, SpeechT5ForTextToSpeech, SpeechT5HifiGan
|
37 |
+
from datasets import load_dataset
|
38 |
import torch
|
39 |
import soundfile as sf
|
40 |
|