Wisdom882 commited on
Commit
43b6f46
·
1 Parent(s): a1c218c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -4,6 +4,16 @@ from transformers import pipeline
4
  pipe = pipeline('sentiment-analysis')
5
 
6
  st.title("Sentiment Analysis")
 
 
 
 
 
 
 
 
 
 
7
  text = st.text_area('Enter some text in the box below!')
8
 
9
  if text:
 
4
  pipe = pipeline('sentiment-analysis')
5
 
6
  st.title("Sentiment Analysis")
7
+ st.write("""
8
+ #This demo shows the truthy or falsy values of text
9
+
10
+ | Tables | Are | Cool |
11
+ | ------------- |:-------------:| -----:|
12
+ | col 3 is | right-aligned | $1600 |
13
+ | col 2 is | centered | $12 |
14
+ | zebra stripes | are neat | $1 |
15
+
16
+ """)
17
  text = st.text_area('Enter some text in the box below!')
18
 
19
  if text: