speech-to-text / run.py
ehristoforu's picture
Update run.py
5d0f02a
raw
history blame contribute delete
232 Bytes
import gradio as gr
stt_demo = gr.load(
"huggingface/facebook/wav2vec2-base-960h",
title="Speech-to-Text",
inputs="mic",
theme="Soft",
)
demo = stt_demo
if __name__ == "__main__":
demo.launch(show_api=False)