Update README.md
Browse files
README.md
CHANGED
@@ -47,12 +47,12 @@ The code will automatically normalize your audio (i.e., resampling + mono channe
|
|
47 |
First of all, please install SpeechBrain with the following command:
|
48 |
|
49 |
```
|
50 |
-
pip install speechbrain
|
51 |
```
|
52 |
Please notice that we encourage you to read our tutorials and learn more about
|
53 |
[SpeechBrain](https://speechbrain.github.io).
|
54 |
### Transcribing your own audio files (in Korean)
|
55 |
-
```
|
56 |
from speechbrain.pretrained import EncoderDecoderASR
|
57 |
asr_model = EncoderDecoderASR.from_hparams(source="ddwkim/asr-conformer-transformerlm-ksponspeech", savedir="pretrained_models/asr-conformer-transformerlm-ksponspeech", run_opts={"device":"cuda"})
|
58 |
asr_model.transcribe_file("ddwkim/asr-conformer-transformerlm-ksponspeech/record_0_16k.wav")
|
|
|
47 |
First of all, please install SpeechBrain with the following command:
|
48 |
|
49 |
```
|
50 |
+
pip install speechbrain==0.5.10
|
51 |
```
|
52 |
Please notice that we encourage you to read our tutorials and learn more about
|
53 |
[SpeechBrain](https://speechbrain.github.io).
|
54 |
### Transcribing your own audio files (in Korean)
|
55 |
+
```
|
56 |
from speechbrain.pretrained import EncoderDecoderASR
|
57 |
asr_model = EncoderDecoderASR.from_hparams(source="ddwkim/asr-conformer-transformerlm-ksponspeech", savedir="pretrained_models/asr-conformer-transformerlm-ksponspeech", run_opts={"device":"cuda"})
|
58 |
asr_model.transcribe_file("ddwkim/asr-conformer-transformerlm-ksponspeech/record_0_16k.wav")
|