rxsalad commited on
Commit
8debee4
1 Parent(s): 0cbe239
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -3,7 +3,10 @@ from transformers import pipeline
3
 
4
  pipe = pipeline("sentiment-analysis")
5
 
6
- text = st.text_area("enter some text")
 
 
 
7
 
8
  if text:
9
  out = pipe(text)
 
3
 
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)