File size: 176 Bytes
ddc1d62 | 1 2 3 4 5 6 7 8 9 10 | 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) |
ddc1d62 | 1 2 3 4 5 6 7 8 9 10 | 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) |