File size: 442 Bytes
211175c |
1 2 3 4 5 6 7 8 9 10 11 12 |
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)
|