subhankarg commited on
Commit
9508f9c
1 Parent(s): 5da6259

Fixing typo in HifiGAN import statement

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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 Vocoder
56
- model = Vocoder.from_pretrained(model_name="tts_hifigan")
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