gos-asr / app.py
Martijn Bartelds
Add app.py
ea16f84
raw
history blame
342 Bytes
# 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()