shawarmabytes commited on
Commit
eadbed5
·
1 Parent(s): 2d9476c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -77,8 +77,8 @@ def tester(text):
77
  return results[0]['label']
78
  #return results
79
 
80
- emo = st.text_input('This application detects the emotion in your text input and suggests a song that matches it. Please enter text below to try:')
81
- st.write('Examples: Today, I felt good!, I feel energetic')
82
  tester(emo)
83
 
84
 
 
77
  return results[0]['label']
78
  #return results
79
 
80
+ emo = st.text_input("Enter your text/sentence/phrase input for emotion classification","Examples: You look wonderful tonight. I am exhausted. LOVE.")
81
+ st.write()
82
  tester(emo)
83
 
84