File size: 556 Bytes
49f3f71
1191f82
49f3f71
9e7512c
1191f82
9e7512c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
import nemo.collections.asr as nemo_asr

# Load the pre-trained Kabyle ASR model
asr_model = nemo_asr.models.EncDecRNNTBPEModel.from_pretrained("nvidia/stt_kab_conformer_transducer_large")

# Function to transcribe the audio input
def transcribe(audio):
    # Transcribe the uploaded audio file and return the result
    return asr_model.transcribe([audio])

# Create the Gradio interface with audio input and text output
iface = gr.Interface(fn=transcribe, inputs="audio", outputs="text")

# Launch the Gradio interface
iface.launch()