File size: 342 Bytes
ea16f84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Code adapted from: https://gradio.app/demos/
import gradio as gr
import os
demo = gr.Interface.load(
"huggingface/bartelds/gos-gpu6-cp1_adp0_192m_no_test_1e-5_cp-12000",
title="Speech-to-text for Gronings",
inputs="mic",
description="Upload an audio file with Gronings speech to obtain its transcription."
)
demo.launch() |