File size: 242 Bytes
51325e5
cdc26e9
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import streamlit as st
from transformers import pipeline
st.title('Example of text sentiments. Input your text below')
pipe = pipeline('sentiment-analysis')
text = st.text_area('enter some text')
if text:
    out = pipe(text)
    st.json(out)