Spaces:
Sleeping
Sleeping
File size: 793 Bytes
7f8cb6d 111d95c 21c55ca 7f8cb6d e45c4d4 6d25e94 7f8cb6d |
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 29 30 31 |
import gradio as gr
from transformers import pipeline
transcription = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-base-100h")
clasification = pipeline(
"audio-classification",
model="anton-l/xtreme_s_xlsr_300m_minds14",
)
def audio_a_text(audio):
text = transcription(audio)["text"]
return text
def text_to_sentimient(audio):
#text = transcription(audio)["text"]
return clasification(audio)
demo = gr.Blocks()
with demo:
gr.Markdown("Speech analyzer")
audio = gr.Audio(type="filepath", label = "Upload a file")
text = gr.Textbox()
b1 = gr.Button("convert to text")
b1.click(audio_a_text, inputs=audio, outputs=text)
b2 = gr.Button("Classification of speech")
b2.click(text_to_sentimient, inputs=audio, outputs=text)
demo.launch()
|