File size: 1,027 Bytes
d5ced82
 
 
 
 
 
 
 
39b44e5
87e05d4
 
 
4bc7d29
87e05d4
39b44e5
87e05d4
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from transformers import pipeline
import gradio as gr

pipe = pipeline(model="jbatista79/whisper-jrb-small-ta")  # change to "your-username/the-name-you-picked"

def transcribe(audio):
    text = pipe(audio)["text"]
    return text

with gr.Blocks() as app:
    with gr.Row():
        with gr.Column(): 
            gr.Image(value="lion-face-outline-cut-hi-strategia-black-strategia01-300x77.png", width=300, show_label=False, show_download_button=False, show_share_button=False)  # Adjust width as needed
        with gr.Column():
            gr.Markdown("## Whisper Small Tamil - தமிழ் (TA)")
            gr.Markdown("Realtime proof-of-concept demo for Tamil speech recognition using a fine-tuned Whisper small model. Created by Josué R. Batista - 2024-01-17")
    with gr.Row():
        audio_input = gr.Audio(sources=["microphone"], type="filepath")
        output_text = gr.Textbox()
    gr.Button("Transcribe").click(fn=transcribe, inputs=audio_input, outputs=output_text)

#app.launch(share=True)
app.launch()