ahmedalrashedi commited on
Commit
dac9003
1 Parent(s): ea2da55

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
+
4
+ sentiment_analysis = pipeline("sentiment-analysis")
5
+
6
+ text = st.text_input("Enter some text")
7
+
8
+ if text:
9
+ result = sentiment_analysis(text)
10
+ st.json(result)