shawarmabytes commited on
Commit
9bc5e9e
·
1 Parent(s): 4e58636

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -45,9 +45,12 @@ def tester(text):
45
 
46
  emo = st.text_input("Enter a text/phrase/sentence. A corresponding song will be recommended based on its emotion.")
47
 
 
 
48
  st.sidebar.write("This application uses the DistilBERT model, a distilled version of BERT. The BERT framework uses" )
49
 
50
 
 
51
  tester(emo)
52
 
53
 
 
45
 
46
  emo = st.text_input("Enter a text/phrase/sentence. A corresponding song will be recommended based on its emotion.")
47
 
48
+
49
+ st.side.bar.subheader("Model Description")
50
  st.sidebar.write("This application uses the DistilBERT model, a distilled version of BERT. The BERT framework uses" )
51
 
52
 
53
+
54
  tester(emo)
55
 
56