ESPnet How to use espnet/owsm_v3.1_ebf_small_lowrestriction with ESPnet:
from espnet2.bin.asr_inference import Speech2Text
model = Speech2Text.from_pretrained(
"espnet/owsm_v3.1_ebf_small_lowrestriction"
)
speech, rate = soundfile.read("speech.wav")
text, *_ = model(speech)[0]