Skip to content

Commit

Permalink
minor docs fix
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Kuchaiev <[email protected]>
  • Loading branch information
okuchaiev committed Apr 7, 2021
1 parent 9fc8042 commit 977b9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/starthere/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Below we is the code snippet of Audio Translator application.
# Speech Recognition model - QuartzNet trained on Russian part of MCV 6.0
quartznet = nemo_asr.models.EncDecCTCModel.from_pretrained(model_name="stt_ru_quartznet15x5").cuda()
# Neural Machine Translation model
nmt_model = nemo_nlp.models.MTEncDecModel.from_pretrained(model_name='nmt_ru_en_transformer6x6', strict=False).cuda()
nmt_model = nemo_nlp.models.MTEncDecModel.from_pretrained(model_name='nmt_ru_en_transformer6x6').cuda()
# Spectrogram generator which takes text as an input and produces spectrogram
spectrogram_generator = nemo_tts.models.Tacotron2Model.from_pretrained(model_name="tts_en_tacotron2").cuda()
# Vocoder model which takes spectrogram and produces actual audio
Expand Down

0 comments on commit 977b9a2

Please sign in to comment.