Adel-Moumen commited on
Commit
9b2cedf
1 Parent(s): f37709b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -60,7 +60,7 @@ Please notice that we encourage you to read our tutorials and learn more about
60
  ### Transcribing your own audio files (in Italian)
61
 
62
  ```python
63
- from speechbrain.pretrained import EncoderDecoderASR
64
  asr_model = EncoderDecoderASR.from_hparams(source="speechbrain/speechbrain/asr-crdnn-commonvoice-14-it", savedir="pretrained_models/speechbrain/asr-crdnn-commonvoice-14-it")
65
  asr_model.transcribe_file("speechbrain/speechbrain/asr-crdnn-commonvoice-14-it/example-it.wav")
66
  ```
 
60
  ### Transcribing your own audio files (in Italian)
61
 
62
  ```python
63
+ from speechbrain.inference.ASR import EncoderDecoderASR
64
  asr_model = EncoderDecoderASR.from_hparams(source="speechbrain/speechbrain/asr-crdnn-commonvoice-14-it", savedir="pretrained_models/speechbrain/asr-crdnn-commonvoice-14-it")
65
  asr_model.transcribe_file("speechbrain/speechbrain/asr-crdnn-commonvoice-14-it/example-it.wav")
66
  ```