Update README.md
Browse files
README.md
CHANGED
@@ -79,6 +79,6 @@ The model can be fine-tuned further or used as part of downstream applications s
|
|
79 |
```python
|
80 |
from transformers import pipeline
|
81 |
|
82 |
-
asr = pipeline("automatic-speech-recognition", model="
|
83 |
transcription = asr("your_audio_file.wav")
|
84 |
print(transcription)
|
|
|
79 |
```python
|
80 |
from transformers import pipeline
|
81 |
|
82 |
+
asr = pipeline("automatic-speech-recognition", model="langminer/wav2vec2-custom-asr")
|
83 |
transcription = asr("your_audio_file.wav")
|
84 |
print(transcription)
|