Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,15 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
+
|
| 4 |
+
# Load sentiment analysis pipeline
|
| 5 |
+
pipe = pipeline('sentiment-analysis')
|
| 6 |
+
|
| 7 |
+
# Streamlit UI
|
| 8 |
+
st.title("📝 Sentiment Analysis App")
|
| 9 |
+
text = st.text_area("Enter your text here:")
|
| 10 |
+
|
| 11 |
+
if text:
|
| 12 |
+
with st.spinner("Analyzing..."):
|
| 13 |
+
result = pipe(text)
|
| 14 |
+
st.subheader("📊 Result:")
|
| 15 |
+
st.json(result)
|