cbbb853
ec69e1d
cbbb853
ec69e1d
432f311
ec69e1d
|
|
import streamlit as st
from transformers import pipeline
st.title("Test")
test_pipeline = pipeline("sentiment-analysis")
text = st.text_area("Enter some text")
if text:
out = test_pipeline(text)
st.json(out) |