nithinraok commited on
Commit
ad3fdee
1 Parent(s): 4e94210

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -185,7 +185,7 @@ The model is available for use in the NeMo toolkit [3], and can be used as a pre
185
 
186
  ```python
187
  import nemo.collections.asr as nemo_asr
188
- asr_model = nemo_asr.models.ASRModel.from_pretrained(model_name="parakeet-tdt_ctc-110m")
189
  ```
190
 
191
  ### Transcribing using Python
@@ -204,7 +204,7 @@ By default model uses TDT to transcribe the audio files, to switch decoder to us
204
 
205
  ```shell
206
  python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py
207
- pretrained_name="parakeet-tdt_ctc-110m"
208
  audio_dir="<DIRECTORY CONTAINING AUDIO FILES>"
209
  ```
210
 
 
185
 
186
  ```python
187
  import nemo.collections.asr as nemo_asr
188
+ asr_model = nemo_asr.models.ASRModel.from_pretrained(model_name="nvidia/parakeet-tdt_ctc-110m")
189
  ```
190
 
191
  ### Transcribing using Python
 
204
 
205
  ```shell
206
  python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py
207
+ pretrained_name="nvidia/parakeet-tdt_ctc-110m"
208
  audio_dir="<DIRECTORY CONTAINING AUDIO FILES>"
209
  ```
210