sandeepmajumdar's picture
Create new file
3e15af8
raw
history blame
182 Bytes
import streamlit as st
from transformers import pipeline
model = pipeline(sentiment-analysis)
text = st.text_area('Enter some text')
if text:
out = model(text)
st.json(out)