Commit
·
9508f9c
1
Parent(s):
5da6259
Fixing typo in HifiGAN import statement
Browse files
README.md
CHANGED
@@ -52,8 +52,8 @@ 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
|
56 |
-
model =
|
57 |
```
|
58 |
|
59 |
### Generate audio
|
|
|
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
|