Spaces:
Runtime error
Runtime error
| 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) | |