sujitb commited on
Commit
35bafd6
1 Parent(s): 146e387

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ from transformers import pipeline
4
 
5
  pipe= pipeline('sentiment-analysis')
6
 
7
- text = st.textarea('Enter some text')
8
 
9
  if text:
10
  out= pipe(text)
 
4
 
5
  pipe= pipeline('sentiment-analysis')
6
 
7
+ text = st.text_area('Enter some text')
8
 
9
  if text:
10
  out= pipe(text)