Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,17 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
if text:
|
8 |
-
|
9 |
-
|
|
|
1 |
import streamlit as st
|
2 |
+
|
3 |
from transformers import pipeline
|
4 |
|
5 |
+
# Initialize the sentiment analysis pipeline
|
6 |
+
|
7 |
+
pipe = pipeline('sentiment-analysis')
|
8 |
+
|
9 |
+
# Create a text input area in the Streamlit app
|
10 |
+
|
11 |
+
text = st.text_area('Enter some text!')
|
12 |
+
|
13 |
+
# Process the text and display the results if there's input
|
14 |
|
15 |
if text:
|
16 |
+
out = pipe(text)
|
17 |
+
st.json(out)
|