Commit ·
9bcea13
1
Parent(s): ac096a3
Update "pretrained name"
Browse files
README.md
CHANGED
|
@@ -49,11 +49,11 @@ pip install nemo_toolkit['all']
|
|
| 49 |
```python
|
| 50 |
# Load FastPitch
|
| 51 |
from nemo.collections.tts.models import FastPitchModel
|
| 52 |
-
spec_generator = FastPitchModel.from_pretrained("tts_en_fastpitch")
|
| 53 |
|
| 54 |
# Load vocoder
|
| 55 |
from nemo.collections.tts.models import HifiGanModel
|
| 56 |
-
model = HifiGanModel.from_pretrained(model_name="tts_hifigan")
|
| 57 |
```
|
| 58 |
|
| 59 |
### Generate audio
|
|
|
|
| 49 |
```python
|
| 50 |
# Load FastPitch
|
| 51 |
from nemo.collections.tts.models import FastPitchModel
|
| 52 |
+
spec_generator = FastPitchModel.from_pretrained("nvidia/tts_en_fastpitch")
|
| 53 |
|
| 54 |
# Load vocoder
|
| 55 |
from nemo.collections.tts.models import HifiGanModel
|
| 56 |
+
model = HifiGanModel.from_pretrained(model_name="nvidia/tts_hifigan")
|
| 57 |
```
|
| 58 |
|
| 59 |
### Generate audio
|