yuankaihuo commited on
Commit
7f4c9c5
·
1 Parent(s): eb097f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import transformers
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)
 
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)