voice_analysis / app.py
abhiSingh's picture
Create app.py
ddc1d62 verified
raw
history blame contribute delete
176 Bytes
import streamlit as st
from transformer import pipeline
pip = pipeline('voce-analysis')
text = st.text_area("Enter some data")
if text:
out = pipe(text)
st.json(out)