subhankarg
commited on
Commit
•
b816033
1
Parent(s):
c9c3f2f
Update pretrained name.
Browse files
README.md
CHANGED
@@ -45,11 +45,11 @@ NOTE: In order to generate audio, you also need a spectrogram generator from NeM
|
|
45 |
```python
|
46 |
# Load FastPitch
|
47 |
from nemo.collections.tts.models import FastPitchModel
|
48 |
-
spec_generator = FastPitchModel.from_pretrained("tts_en_fastpitch")
|
49 |
|
50 |
# Load vocoder
|
51 |
from nemo.collections.tts.models import HifiGanModel
|
52 |
-
model = HifiGanModel.from_pretrained(model_name="tts_hifigan")
|
53 |
```
|
54 |
|
55 |
### Generate audio
|
|
|
45 |
```python
|
46 |
# Load FastPitch
|
47 |
from nemo.collections.tts.models import FastPitchModel
|
48 |
+
spec_generator = FastPitchModel.from_pretrained("nvidia/tts_en_fastpitch")
|
49 |
|
50 |
# Load vocoder
|
51 |
from nemo.collections.tts.models import HifiGanModel
|
52 |
+
model = HifiGanModel.from_pretrained(model_name="nvidia/tts_hifigan")
|
53 |
```
|
54 |
|
55 |
### Generate audio
|