Views
No views yet
This repo is forked from https://huggingface.co/reazon-research/reazonspeech-k2-v2
reazonspeech-k2-v2 is an automatic speech recognition (ASR) model
trained on ReazonSpeech v2.0 corpus.from reazonspeech.k2.asr import load_model, transcribe, audio_from_path
audio = audio_from_path("speech.wav")
model = load_model()
ret = transcribe(model, audio)
print(ret.text)