Eddie / app.py
EDDIE2541's picture
Update app.py
95854ff verified
raw
history blame contribute delete
177 Bytes
import streamlit as st
from transformers import pipeline
pipe= pipeline('sentiment-analysis')
text =st.text_are (Maven_Lora)
if text:
out=pipe(text)
st.json(out)