checkdata / app.py
Zaroon's picture
Version 1.0
211175c
raw
history blame contribute delete
442 Bytes
import gradio as gr
def Urdu():
print("An Automatic Speech Recognition System for Urdu Language")
interface=gr.Interface(Urdu, inputs="audio", outputs=gr.Textbox(),
title="An Automatic Speech Recognition System for Urdu Language",
description="Upload The audio file in Urdu Language and the model will convert the speech into Urdu Text"
)
interface.launch(share=True)