Spaces:
Sleeping
Sleeping
rxsalad
commited on
Commit
•
d7ed77c
1
Parent(s):
8debee4
v2
Browse files
app.py
CHANGED
@@ -4,9 +4,9 @@ from transformers import pipeline
|
|
4 |
pipe = pipeline("sentiment-analysis")
|
5 |
|
6 |
st.write( "---------------------------")
|
7 |
-
st.write( "--------------------------- demo2")
|
8 |
|
9 |
-
text = st.text_area("
|
10 |
|
11 |
if text:
|
12 |
out = pipe(text)
|
|
|
4 |
pipe = pipeline("sentiment-analysis")
|
5 |
|
6 |
st.write( "---------------------------")
|
7 |
+
st.write( "--------------------------- demo2: Sentiment Analysis")
|
8 |
|
9 |
+
text = st.text_area("Please enter some text")
|
10 |
|
11 |
if text:
|
12 |
out = pipe(text)
|