Wisdom882 commited on
Commit
455f7b5
·
1 Parent(s): 140eb8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -4,12 +4,7 @@ from transformers import pipeline
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
-
11
-
12
- """)
13
  text = st.text_area('Enter some text in the box below!')
14
 
15
  if text:
 
4
  pipe = pipeline('sentiment-analysis')
5
 
6
  st.title("Sentiment Analysis")
7
+ st.write("""#### This demo identifies the emotional tone behind a body of text.""")
 
 
 
 
 
8
  text = st.text_area('Enter some text in the box below!')
9
 
10
  if text: