cbbb853 ec69e1d 432f311 ec69e1d
1
2
3
4
5
6
7
8
9
10
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)