speechbrainteam commited on
Commit
cd4def2
1 Parent(s): ea23708

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -53,12 +53,12 @@ pip install speechbrain
53
  Please notice that we encourage you to read our tutorials and learn more about
54
  [SpeechBrain](https://speechbrain.github.io).
55
 
56
- ### Transcribing your own audio files
57
 
58
  ```python
59
  from speechbrain.pretrained import EncoderDecoderASR
60
 
61
- asr_model = EncoderDecoderASR.from_hparams(source="speechbrain/asr-crdnn-commonvoice-it")
62
  asr_model.transcribe_file("path_to_your_file.wav")
63
 
64
  ```
53
  Please notice that we encourage you to read our tutorials and learn more about
54
  [SpeechBrain](https://speechbrain.github.io).
55
 
56
+ ### Transcribing your own audio files (in Italian)
57
 
58
  ```python
59
  from speechbrain.pretrained import EncoderDecoderASR
60
 
61
+ asr_model = EncoderDecoderASR.from_hparams(source="speechbrain/asr-crdnn-commonvoice-it", savedir="pretrained_models/asr-crdnn-commonvoice-it")
62
  asr_model.transcribe_file("path_to_your_file.wav")
63
 
64
  ```