File size: 837 Bytes
7568d0b
 
 
eeaadf2
7568d0b
 
 
 
 
 
 
10b5093
 
7568d0b
4e17ec2
7568d0b
 
 
 
16d9c5d
7568d0b
 
16d9c5d
0ba2497
7568d0b
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import gradio as gr
from transformers import pipeline
import numpy as np
import librosa

transcriber = pipeline("automatic-speech-recognition", model="Oysiyl/w2v-bert-2.0-ukrainian-colab-CV16.0")

def transcribe(audio):
    sr, y = audio
    y = y.astype(np.float32)
    y /= np.max(np.abs(y))
    if sr != 16000:
        y = librosa.resample(y, orig_sr=sr, target_sr=16000)

    return transcriber({"sampling_rate": 16000, "raw": y})["text"]


demo = gr.Interface(
    transcribe,
    gr.Audio(sources=["upload", "microphone"]),
    outputs="text",
    title="Automatic Speech Recognition for Ukrainian language demo",
    description="Click on the example below, upload audio from file or say something in microphone!",
    examples=[["examples/asr_example.wav"], ["examples/tts_example.wav"]],
    cache_examples=True
)

demo.launch()