testspace / app.py
kdevoe's picture
Update app.py
78497a7 verified
raw
history blame
232 Bytes
import streamlit as st
from transformers import pipeline
from inference import inference
pipe = pipeline('sentiment-analysis')
text = st.text_area('enter some text: ')
if text:
out = pipe(text)
inference()
st.json(out)