roshithindia's picture
Create app.py
958535c
raw
history blame contribute delete
196 Bytes
import streamlit as st
from transformers import pipeline
st.header('Sentiment Analysis')
model = pipeline('sentiment-analysis')
inp = st.text_input('Enter Text')
if inp:
st.write(model(inp))