File size: 666 Bytes
a1e4d20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
"""ASRversion1.ipynb

Automatically generated by Colaboratory.

Original file is located at
    https://colab.research.google.com/drive/1-gXmGVSyybRpqmodp8rrWUrE_41-qP_B
"""

!pip install gradio -q

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)