Add model files c9e146d
Koichi Miyazaki commited on
How to use espnet/kmiyazaki_librispeech_asr_s4_decoder with ESPnet:
from espnet2.bin.asr_inference import Speech2Text
model = Speech2Text.from_pretrained(
"espnet/kmiyazaki_librispeech_asr_s4_decoder"
)
speech, rate = soundfile.read("speech.wav")
text, *_ = model(speech)[0]