ModelA / App.py
Fluospark128's picture
Create App.py
3fc25eb verified
raw
history blame contribute delete
179 Bytes
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)