rxsalad commited on
Commit
d7ed77c
1 Parent(s): 8debee4
Files changed (1) hide show
  1. app.py +2 -2
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("Enter some text")
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)