Commit
Β·
93ac4cf
1
Parent(s):
2c9714c
π¦ Update README
Browse files
README.md
CHANGED
|
@@ -25,6 +25,12 @@ pip install TensorFlowTTS
|
|
| 25 |
|
| 26 |
### Converting your Text to Mel Spectrogram
|
| 27 |
```python
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
from tensorflow_tts.inference import AutoProcessor
|
| 29 |
from tensorflow_tts.inference import TFAutoModel
|
| 30 |
|
|
|
|
| 25 |
|
| 26 |
### Converting your Text to Mel Spectrogram
|
| 27 |
```python
|
| 28 |
+
import numpy as np
|
| 29 |
+
import soundfile as sf
|
| 30 |
+
import yaml
|
| 31 |
+
|
| 32 |
+
import tensorflow as tf
|
| 33 |
+
|
| 34 |
from tensorflow_tts.inference import AutoProcessor
|
| 35 |
from tensorflow_tts.inference import TFAutoModel
|
| 36 |
|