test_sent / app.py
iabualhaol's picture
Update app.py
9e4ad05
raw
history blame contribute delete
674 Bytes
import streamlit as st
from transformers import pipeline
from textblob import TextBlob
model_name= "distilbert-base-uncased-finetuned-sst-2-english"
pipe = pipeline(model_name)
st.title("Sentiment Analysis")
st.subheader("Which framework would you like to use for sentiment analysis?")
option = st.selectbox('Choose Framework:',('Transformers', 'TextBlob')) # option is stored in this variable
st.subheader("Enter the text you want to analyze")
text = st.text_input('Enter text:') # text is stored in this variable
if option == 'Transformers':
out = pipe(text)
else:
out = TextBlob(text)
out = out.sentiment
st.write("Sentiment of Text: ")
st.write(out)