ols / app.py
LinhCT's picture
Update app.py
9121d15 verified
raw
history blame
208 Bytes
import streamlit as st
pip install transformers
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
text = st.text_area('enter some text')
if text:
out = pipe(text)
st.json(out)