shawarmabytes commited on
Commit
c83c09a
·
1 Parent(s): 89c822b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ emo = st.text_input("Enter a text/phrase/sentence. A corresponding song will be
50
 
51
 
52
  st.sidebar.subheader("Model Description")
53
- st.sidebar.write("This application uses the DistilBERT model, a distilled version of BERT. The BERT framework uses" )
54
 
55
 
56
 
 
50
 
51
 
52
  st.sidebar.subheader("Model Description")
53
+ st.sidebar.write("This application uses the DistilBERT model, a distilled version of BERT. The BERT framework uses a bidirectional transformer that allows it to learn the context of a word based on the left and right of the word. According to a paper by V. Sanh, et al., DistilBERT can \"reduce the size of a BERT model by 40%, while retaining 97% of its language understanding capabilities, and being 60% faster.\" This is why the DistilBERT model was used." )
54
 
55
 
56