Instructions to use espnet/owsm_v4_medium_1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ESPnet
How to use espnet/owsm_v4_medium_1B with ESPnet:
from espnet2.bin.asr_inference import Speech2Text model = Speech2Text.from_pretrained( "espnet/owsm_v4_medium_1B" ) speech, rate = soundfile.read("speech.wav") text, *_ = model(speech)[0] - Notebooks
- Google Colab
- Kaggle
Add library_name and ensure correct pipeline tag
#2
by nielsr HF Staff - opened
This PR updates the model card to include the correct library_name and ensures the pipeline_tag is set to automatic-speech-recognition. This will improve discoverability of the model.
sw005320 changed pull request status to merged
Thanks!