Spaces:
No application file
No application file
import streamlit as st | |
from transformers import pipeline | |
pipe = pipeline("sentiment-analysis") | |
text = st.text_axes("This is a text") | |
if text: | |
t = pipe(text) | |
st join(t) |