Spaces:
Sleeping
Sleeping
Commit
·
7f4c9c5
1
Parent(s):
eb097f6
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import transformers
|
|
3 |
from transformers import pipeline
|
4 |
|
5 |
pipe = pipeline("sentiment-analysis")
|
6 |
-
text = st.
|
7 |
|
8 |
if text:
|
9 |
out = pipe(text)
|
|
|
3 |
from transformers import pipeline
|
4 |
|
5 |
pipe = pipeline("sentiment-analysis")
|
6 |
+
text = st.text_area("enter some text!")
|
7 |
|
8 |
if text:
|
9 |
out = pipe(text)
|