Update model d4862a5
Ubuntu commited on
How to use jestillore/an4-asr1 with ESPnet:
from espnet2.bin.asr_inference import Speech2Text
model = Speech2Text.from_pretrained(
"jestillore/an4-asr1"
)
speech, rate = soundfile.read("speech.wav")
text, *_ = model(speech)[0]